Files
agent-framework/dotnet/tests/OpenAIChatCompletion.IntegrationTests/OpenAIConfiguration.cs
T
westeyandGitHub 293cdb1846 Add test infrastructure for agent conformance tests (#77)
* Add test infrastructure for agent conformance tests

* Address PR comments.

* Switch TargetFrameworks to have inline condition
2025-06-16 11:32:20 +01:00

16 lines
541 B
C#

// Copyright (c) Microsoft. All rights reserved.
namespace OpenAIChatCompletion.IntegrationTests;
#pragma warning disable CS8618 // Non-nullable field must contain a non-null value when exiting constructor. Consider adding the 'required' modifier or declaring as nullable.
#pragma warning disable CA1812 // Internal class that is apparently never instantiated.
internal sealed class OpenAIConfiguration
{
public string? ServiceId { get; set; }
public string ChatModelId { get; set; }
public string ApiKey { get; set; }
}