Files
agent-framework/dotnet/tests/OpenAIResponse.IntegrationTests/OpenAIResponseInvokeTests.cs
T
westeyandGitHub d1d69af482 Add tests for ChatClientAgent with OpenAI responses (#82)
* Add tests for ChatClientAgent with OpenAI responses

* Address PR comments

* Fix typo
2025-06-19 09:12:24 +00:00

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))
{
}