BotSharp/src/Plugins/BotSharp.Plugin.AzureOpenAI/Settings/AzureOpenAiSettings.cs
2023-06-29 18:14:57 -05:00

10 lines
303 B
C#

namespace BotSharp.Plugin.AzureOpenAI.Settings;
public class AzureOpenAiSettings
{
public string ApiKey { get; set; } = string.Empty;
public string Endpoint { get; set; } = string.Empty;
public DeploymentModelSetting DeploymentModel { get; set; }
= new DeploymentModelSetting();
}