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