mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
578b35723a
* Remove additional instructions from AgentRunOptions since it is not well supported outside of ChatClientAgents * Fix typos and remove unused test. * Make further namespace fixes and update AzureAIAgent with new tests. * Expand tests to increase code coverage
14 lines
396 B
C#
14 lines
396 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using AgentConformance.IntegrationTests;
|
|
|
|
namespace OpenAIResponse.IntegrationTests;
|
|
|
|
public class OpenAIResponseStoreTrueRunStreamingTests() : RunStreamingTests<OpenAIResponseFixture>(() => new(store: true))
|
|
{
|
|
}
|
|
|
|
public class OpenAIResponseStoreFalseRunStreamingTests() : RunStreamingTests<OpenAIResponseFixture>(() => new(store: false))
|
|
{
|
|
}
|