mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
* 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>
33 lines
1.3 KiB
C#
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";
|
|
}
|
|
}
|