10 lines
303 B
C#
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();
|
|
}
|