From a041bd1b52e9e821886a20089c1b69228ad76aa0 Mon Sep 17 00:00:00 2001 From: dfedoryshchev Date: Wed, 5 Aug 2026 18:23:20 +0100 Subject: [PATCH] .NET: Fix documented default for ChatHistoryMemoryProviderOptions.FunctionToolDescription --- .../Memory/ChatHistoryMemoryProviderOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotnet/src/Microsoft.Agents.AI/Memory/ChatHistoryMemoryProviderOptions.cs b/dotnet/src/Microsoft.Agents.AI/Memory/ChatHistoryMemoryProviderOptions.cs index db1731a54d5..b31b57a5e3a 100644 --- a/dotnet/src/Microsoft.Agents.AI/Memory/ChatHistoryMemoryProviderOptions.cs +++ b/dotnet/src/Microsoft.Agents.AI/Memory/ChatHistoryMemoryProviderOptions.cs @@ -27,7 +27,7 @@ public sealed class ChatHistoryMemoryProviderOptions /// /// Gets or sets the description of the exposed search tool when operating in on-demand mode. /// - /// Defaults to "Allows searching through previous chat history to help answer the user question.". + /// Defaults to "Allows searching for related previous chat history to help answer the user question.". public string? FunctionToolDescription { get; set; } ///