// Copyright (c) Microsoft. All rights reserved. using AgentConformance.IntegrationTests; namespace OpenAIResponse.IntegrationTests; public class OpenAIResponseStoreTrueRunStreamingTests() : RunStreamingTests(() => new(store: true)) { } public class OpenAIResponseStoreFalseRunStreamingTests() : RunStreamingTests(() => new(store: false)) { }