Skip to content

Commit ecd678b

Browse files
committed
Cleanups
1 parent 6b9c81b commit ecd678b

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

dotnet/samples/AGUIClientServer/AGUIDojoServer/Ingredient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft. All rights reserved.
1+
// Copyright (c) Microsoft. All rights reserved.
22

33
using System.Text.Json.Serialization;
44

dotnet/samples/AGUIClientServer/AGUIDojoServer/Recipe.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft. All rights reserved.
1+
// Copyright (c) Microsoft. All rights reserved.
22

33
using System.Text.Json.Serialization;
44

dotnet/samples/AGUIClientServer/AGUIDojoServer/SharedStateAgent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft. All rights reserved.
1+
// Copyright (c) Microsoft. All rights reserved.
22

33
using System.Diagnostics.CodeAnalysis;
44
using System.Runtime.CompilerServices;

dotnet/src/Microsoft.Agents.AI.AGUI/AGUIChatClient.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ private JsonElement ExtractAndRemoveStateFromMessages(List<ChatMessage> messages
321321
for (int i = 0; i < lastMessage.Contents.Count; i++)
322322
{
323323
if (lastMessage.Contents[i] is DataContent dataContent &&
324-
System.Net.Http.Headers.MediaTypeHeaderValue.TryParse(dataContent.MediaType, out var mediaType) &&
324+
MediaTypeHeaderValue.TryParse(dataContent.MediaType, out var mediaType) &&
325325
mediaType.Equals(s_json))
326326
{
327327
// Deserialize the state JSON directly from UTF-8 bytes

dotnet/src/Microsoft.Agents.AI.AGUI/Shared/StateDeltaEvent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft. All rights reserved.
1+
// Copyright (c) Microsoft. All rights reserved.
22

33
using System.Text.Json;
44
using System.Text.Json.Serialization;

dotnet/tests/Microsoft.Agents.AI.Hosting.AGUI.AspNetCore.IntegrationTests/SharedStateTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) Microsoft. All rights reserved.
1+
// Copyright (c) Microsoft. All rights reserved.
22

33
using System;
44
using System.Collections.Generic;

0 commit comments

Comments
 (0)
SYSTEM_READY >> ...MS