Skip to content

Commit 0fe91fa

Browse files
stephentoubjeffhandley
authored andcommitted
Add missing [DebuggerDisplay] on AIFunctionArguments (dotnet#6422)
1 parent aa6ca66 commit 0fe91fa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Libraries/Microsoft.Extensions.AI.Abstractions/Functions/AIFunctionArguments.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
using System;
55
using System.Collections;
66
using System.Collections.Generic;
7+
using System.Diagnostics;
78

89
#pragma warning disable SA1111 // Closing parenthesis should be on line of last parameter
910
#pragma warning disable SA1112 // Closing parenthesis should be on line of opening parenthesis
@@ -24,6 +25,7 @@ namespace Microsoft.Extensions.AI;
2425
/// an <see cref="AIFunction"/> if it needs to resolve any services from a dependency injection
2526
/// container.
2627
/// </remarks>
28+
[DebuggerDisplay("Count = {Count}")]
2729
public class AIFunctionArguments : IDictionary<string, object?>, IReadOnlyDictionary<string, object?>
2830
{
2931
/// <summary>The nominal arguments.</summary>

0 commit comments

Comments
 (0)