BotSharp/src/Plugins/BotSharp.Plugin.AzureOpenAI/Settings/DeploymentModelSetting.cs

13 lines
359 B
C#
Raw Normal View History

2023-06-19 18:32:49 +00:00
namespace BotSharp.Plugin.AzureOpenAI.Settings;
public class DeploymentModelSetting
{
2023-09-09 15:37:38 +00:00
public string ChatCompletionModel { get; set; } = string.Empty;
2023-06-19 18:32:49 +00:00
public string? TextCompletionModel { get; set; }
2023-07-28 03:12:12 +00:00
public override string ToString()
{
return $"ChatCompletion - {ChatCompletionModel}, TextCompletion - {TextCompletionModel}";
}
2023-06-19 18:32:49 +00:00
}