mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
18 lines
781 B
C#
18 lines
781 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using AgentConformance.IntegrationTests;
|
|
|
|
namespace AnthropicChatCompletion.IntegrationTests;
|
|
|
|
public class AnthropicBetaChatCompletionRunTests()
|
|
: RunTests<AnthropicChatCompletionFixture>(() => new(useReasoningChatModel: false, useBeta: true));
|
|
|
|
public class AnthropicBetaChatCompletionReasoningRunTests()
|
|
: RunTests<AnthropicChatCompletionFixture>(() => new(useReasoningChatModel: true, useBeta: true));
|
|
|
|
public class AnthropicChatCompletionRunTests()
|
|
: RunTests<AnthropicChatCompletionFixture>(() => new(useReasoningChatModel: false, useBeta: false));
|
|
|
|
public class AnthropicChatCompletionReasoningRunTests()
|
|
: RunTests<AnthropicChatCompletionFixture>(() => new(useReasoningChatModel: true, useBeta: false));
|