mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
7194ae5c0f
* Skipping non supported integration scenarios for OpenAI Responses * Update dotnet/src/Microsoft.Extensions.AI.Agents.OpenAI/NewOpenAIResponsesChatClient.cs Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
28 lines
877 B
C#
28 lines
877 B
C#
// Copyright (c) Microsoft. All rights reserved.
|
|
|
|
using System.Threading.Tasks;
|
|
using AgentConformance.IntegrationTests;
|
|
|
|
namespace OpenAIResponse.IntegrationTests;
|
|
|
|
public class OpenAIResponseStoreTrueRunStreamingTests() : RunStreamingTests<OpenAIResponseFixture>(() => new(store: true))
|
|
{
|
|
private const string SkipReason = "OpenAIResponse does not support empty messages";
|
|
[Fact(Skip = SkipReason)]
|
|
public override Task RunWithNoMessageDoesNotFailAsync()
|
|
{
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|
|
|
|
public class OpenAIResponseStoreFalseRunStreamingTests() : RunStreamingTests<OpenAIResponseFixture>(() => new(store: false))
|
|
{
|
|
private const string SkipReason = "OpenAIResponse does not support empty messages";
|
|
|
|
[Fact(Skip = SkipReason)]
|
|
public override Task RunWithNoMessageDoesNotFailAsync()
|
|
{
|
|
return Task.CompletedTask;
|
|
}
|
|
}
|