// Copyright (c) Microsoft. All rights reserved. using AgentConformance.IntegrationTests; namespace AnthropicChatCompletion.IntegrationTests; public class AnthropicBetaChatCompletionRunTests() : RunTests(() => new(useReasoningChatModel: false, useBeta: true)); public class AnthropicBetaChatCompletionReasoningRunTests() : RunTests(() => new(useReasoningChatModel: true, useBeta: true)); public class AnthropicChatCompletionRunTests() : RunTests(() => new(useReasoningChatModel: false, useBeta: false)); public class AnthropicChatCompletionReasoningRunTests() : RunTests(() => new(useReasoningChatModel: true, useBeta: false));