Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: change default value of IncludeContextInSystemMessage to false
  • Loading branch information
ckpearson committed May 28, 2025
commit cce5336e5246afd0798528e45023ffecabb6a7d4
2 changes: 1 addition & 1 deletion dotnet-sdk/AGUIDotnet/Agent/ChatClientAgent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public record ChatClientAgentOptions
/// <summary>
/// When overriding the system message, whether to include provided or extracted context in the system message.
/// </summary>
public bool IncludeContextInSystemMessage { get; init; } = true;
public bool IncludeContextInSystemMessage { get; init; } = false;
}

/// <summary>
Expand Down