Skip to content

Commit 16d22b7

Browse files
committed
Remove unnecessary usings
1 parent 3f5a69b commit 16d22b7

File tree

38 files changed

+0
-38
lines changed

38 files changed

+0
-38
lines changed

dotnet/samples/GettingStarted/AgentOpenTelemetry/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
// Copyright (c) Microsoft. All rights reserved.
22

3-
using System.ClientModel;
43
using System.ClientModel.Primitives;
54
using System.ComponentModel;
65
using System.Diagnostics;

dotnet/samples/GettingStarted/AgentProviders/Agent_With_AzureOpenAIChatCompletion/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
// This sample shows how to create and use a simple AI agent with Azure OpenAI Chat Completion as the backend.
44

5-
using System.ClientModel;
65
using System.ClientModel.Primitives;
76
using Azure.Identity;
87
using Microsoft.Agents.AI;

dotnet/samples/GettingStarted/AgentProviders/Agent_With_AzureOpenAIResponses/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
// This sample shows how to create and use a simple AI agent with Azure OpenAI Responses as the backend.
44

5-
using System.ClientModel;
65
using System.ClientModel.Primitives;
76
using Azure.Identity;
87
using Microsoft.Agents.AI;

dotnet/samples/GettingStarted/Agents/Agent_Step01_Running/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
// This sample shows how to create and use a simple AI agent with Azure OpenAI as the backend.
44

5-
using System.ClientModel;
65
using System.ClientModel.Primitives;
76
using Azure.Identity;
87
using Microsoft.Agents.AI;

dotnet/samples/GettingStarted/Agents/Agent_Step02_MultiturnConversation/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
// This sample shows how to create and use a simple AI agent with a multi-turn conversation.
44

5-
using System.ClientModel;
65
using System.ClientModel.Primitives;
76
using Azure.Identity;
87
using Microsoft.Agents.AI;

dotnet/samples/GettingStarted/Agents/Agent_Step03_UsingFunctionTools/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// This sample demonstrates how to use a ChatClientAgent with function tools.
44
// It shows both non-streaming and streaming agent interactions using menu-related tools.
55

6-
using System.ClientModel;
76
using System.ClientModel.Primitives;
87
using System.ComponentModel;
98
using Azure.Identity;

dotnet/samples/GettingStarted/Agents/Agent_Step04_UsingFunctionToolsWithApprovals/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
// If the agent is hosted in a service, with a remote user, combine this sample with the Persisted Conversations sample to persist the chat history
66
// while the agent is waiting for user input.
77

8-
using System.ClientModel;
98
using System.ClientModel.Primitives;
109
using System.ComponentModel;
1110
using Azure.Identity;

dotnet/samples/GettingStarted/Agents/Agent_Step05_StructuredOutput/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
// This sample shows how to create and use a simple AI agent with Azure OpenAI as the backend, to produce structured output using JSON schema from a class.
44

5-
using System.ClientModel;
65
using System.ClientModel.Primitives;
76
using System.ComponentModel;
87
using System.Text.Json;

dotnet/samples/GettingStarted/Agents/Agent_Step06_PersistedConversations/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
// This sample shows how to create and use a simple AI agent with a conversation that can be persisted to disk.
44

5-
using System.ClientModel;
65
using System.ClientModel.Primitives;
76
using System.Text.Json;
87
using Azure.Identity;

dotnet/samples/GettingStarted/Agents/Agent_Step07_3rdPartyThreadStorage/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
// This sample shows how to create and use a simple AI agent with a conversation that can be persisted to disk.
66

7-
using System.ClientModel;
87
using System.ClientModel.Primitives;
98
using System.Text.Json;
109
using Azure.Identity;

0 commit comments

Comments
 (0)