mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
06a690685f
* Add reasoning integration tests * Adding Reasoning Model config
16 lines
420 B
C#
16 lines
420 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using AgentConformance.IntegrationTests;
|
|
|
|
namespace OpenAIChatCompletion.IntegrationTests;
|
|
|
|
public class OpenAIChatCompletionRunTests()
|
|
: RunTests<OpenAIChatCompletionFixture>(() => new(useReasoningChatModel: false))
|
|
{
|
|
}
|
|
|
|
public class OpenAIChatCompletionReasoningRunTests()
|
|
: RunTests<OpenAIChatCompletionFixture>(() => new(useReasoningChatModel: true))
|
|
{
|
|
}
|