Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public static class ChatDetailsExtensions
/// <see cref="ChatDetails.TurnDetails"/> collection.
/// </summary>
/// <param name="chatDetails">
/// The <see cref="ChatDetails"/> object to which the <parameref name="turnDetails"/> is to be added.
/// The <see cref="ChatDetails"/> object to which the <paramref name="turnDetails"/> is to be added.
/// </param>
/// <param name="turnDetails">
/// The <see cref="ChatTurnDetails"/> for a particular LLM chat conversation turn.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ namespace Microsoft.Extensions.AI.Evaluation;
public static class EvaluationMetricExtensions
{
/// <summary>
/// Returns <see langword="true"/> if the supplied <paramref name="metric"/> contains any
/// <see cref="EvaluationDiagnostic"/> matching the supplied <paramref name="predicate"/>; <see langword="false"/>
/// otherwise.
/// Determines if the supplied <paramref name="metric"/> contains any
/// <see cref="EvaluationDiagnostic"/> matching the supplied <paramref name="predicate"/>.
/// </summary>
/// <param name="metric">The <see cref="EvaluationMetric"/> that is to be inspected.</param>
/// <param name="predicate">
Expand Down Expand Up @@ -97,7 +96,7 @@ public static void AddOrUpdateMetadata(this EvaluationMetric metric, string name
}

/// <summary>
/// Adds or updates the supplied <parameterref name="metadata"/> to the supplied <see cref="EvaluationMetric"/>'s
/// Adds or updates the supplied <paramref name="metadata"/> to the supplied <see cref="EvaluationMetric"/>'s
/// <see cref="EvaluationMetric.Metadata"/> collection.
/// </summary>
/// <param name="metric">The <see cref="EvaluationMetric"/>.</param>
Expand Down
Loading