2023-08-28 03:50:10 +00:00
|
|
|
using BotSharp.Abstraction.Routing.Settings;
|
|
|
|
|
|
2023-06-19 18:32:49 +00:00
|
|
|
namespace BotSharp.Plugin.AzureOpenAI.Settings;
|
2023-05-28 16:30:27 +00:00
|
|
|
|
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;
|
2023-06-19 18:32:49 +00:00
|
|
|
public DeploymentModelSetting DeploymentModel { get; set; }
|
|
|
|
|
= new DeploymentModelSetting();
|
2023-08-28 03:50:10 +00:00
|
|
|
|
|
|
|
|
public GPT4Settings GPT4 { get; set; }
|
2023-05-28 16:30:27 +00:00
|
|
|
}
|