BotSharp/src/Plugins/BotSharp.Plugin.AzureOpenAI/AzureOpenAiSettings.cs

11 lines
378 B
C#
Raw Normal View History

2023-05-28 16:30:27 +00:00
namespace BotSharp.Platform.AzureAi;
2023-06-07 01:10:09 +00:00
public class AzureOpenAiSettings
2023-05-28 16:30:27 +00:00
{
2023-05-29 01:06:05 +00:00
public string ApiKey { get; set; } = string.Empty;
public string Endpoint { get; set; } = string.Empty;
public string DeploymentModel { get; set; } = string.Empty;
public string InstructionFile { get; set; } = string.Empty;
public string ChatSampleFile { get; set; } = string.Empty;
2023-05-28 16:30:27 +00:00
}