File: ChatResponseExtensions.cs | Web Access |
Project: src\src\Libraries\Microsoft.Extensions.AI.Evaluation.Safety\Microsoft.Extensions.AI.Evaluation.Safety.csproj (Microsoft.Extensions.AI.Evaluation.Safety) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace Microsoft.Extensions.AI.Evaluation.Safety; internal static class ChatResponseExtensions { internal static bool ContainsImageWithSupportedFormat(this ChatResponse response) => response.Messages.ContainsImageWithSupportedFormat(); } |