// Copyright (c) Microsoft. All rights reserved.
using System.ComponentModel.DataAnnotations;
namespace ChatWithAgent.Configuration;
///
/// OpenAI chat configuration.
///
public sealed class OpenAIChatConfig
{
///
/// Configuration section name.
///
public const string ConfigSectionName = "OpenAIChat";
///
/// The name of the chat model.
///
[Required]
public string ModelName { get; set; } = string.Empty;
}