mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
* Add tests for ChatClientAgent with OpenAI responses * Address PR comments * Fix typo
14 lines
376 B
C#
14 lines
376 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using AgentConformance.IntegrationTests;
|
|
|
|
namespace OpenAIResponse.IntegrationTests;
|
|
|
|
public class OpenAIResponseStoreTrueInvokeTests() : RunAsyncTests<OpenAIResponseFixture>(() => new(store: true))
|
|
{
|
|
}
|
|
|
|
public class OpenAIResponseStoreFalseInvokeTests() : RunAsyncTests<OpenAIResponseFixture>(() => new(store: false))
|
|
{
|
|
}
|