mirror of
https://github.com/microsoft/agent-framework.git
synced 2026-06-16 21:04:09 +08:00
* Add test infrastructure for agent conformance tests * Address PR comments. * Switch TargetFrameworks to have inline condition
16 lines
541 B
C#
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; }
|
|
}
|