Files
agent-framework/dotnet/src/Shared/DiagnosticIds/DiagnosticsIds.cs
T
a356a16568 .NET: Remove OpenAIAssistantClientExtensions class (#5058)
* Remove OpenAIAssistantClientExtensions class

Remove the deprecated OpenAI Assistants API extension methods, along with
their unit tests, integration tests, sample project, and related references.

- Delete OpenAIAssistantClientExtensions.cs (source)
- Delete OpenAIAssistantClientExtensionsTests.cs (unit + integration tests)
- Delete Agent_With_OpenAIAssistants sample project
- Remove sample from solution file, README, and verify-samples definitions
- Remove AIOpenAIAssistants diagnostic ID constant

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>

* add removed extension methods to the suppression file

---------

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-04-02 13:51:41 +00:00

33 lines
1.3 KiB
C#

// Copyright (c) Microsoft. All rights reserved.
namespace Microsoft.Shared.DiagnosticIds;
/// <summary>
/// Various diagnostic IDs reported by this repo.
/// </summary>
internal static class DiagnosticIds
{
/// <summary>
/// Experiments supported by this repo.
/// </summary>
internal static class Experiments
{
// This experiment ID is used for all experimental features in the Microsoft Agent Framework.
internal const string AgentsAIExperiments = "MAAI001";
// These diagnostic IDs are defined by the MEAI package for its experimental APIs.
// We use the same IDs so consumers do not need to suppress additional diagnostics
// when using the experimental MEAI APIs.
internal const string AIResponseContinuations = MEAIExperiments;
internal const string AIMcpServers = MEAIExperiments;
internal const string AIFunctionApprovals = MEAIExperiments;
// These diagnostic IDs are defined by the OpenAI package for its experimental APIs.
// We use the same IDs so consumers do not need to suppress additional diagnostics
// when using the experimental OpenAI APIs.
internal const string AIOpenAIResponses = "OPENAI001";
private const string MEAIExperiments = "MEAI001";
}
}