From 97cfde4b19536e55e9d84cd3310ebc2cd79cfa31 Mon Sep 17 00:00:00 2001 From: Dmytro Struk <13853051+dmytrostruk@users.noreply.github.com> Date: Thu, 23 Jan 2025 17:11:48 -0800 Subject: [PATCH] Fixed formatting --- .../AI/ChatCompletion/ChatHistoryExtensions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotnet/src/SemanticKernel.Abstractions/AI/ChatCompletion/ChatHistoryExtensions.cs b/dotnet/src/SemanticKernel.Abstractions/AI/ChatCompletion/ChatHistoryExtensions.cs index e24ccdbce5f0..0035b981bf66 100644 --- a/dotnet/src/SemanticKernel.Abstractions/AI/ChatCompletion/ChatHistoryExtensions.cs +++ b/dotnet/src/SemanticKernel.Abstractions/AI/ChatCompletion/ChatHistoryExtensions.cs @@ -2,9 +2,9 @@ using System.Collections.Generic; using System.Diagnostics.CodeAnalysis; -using System.Threading.Tasks; -using System.Threading; using System.Linq; +using System.Threading; +using System.Threading.Tasks; namespace Microsoft.SemanticKernel.ChatCompletion;