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

13 lines
344 B
C#
Raw Normal View History

2023-06-19 18:32:49 +00:00
namespace BotSharp.Plugin.AzureOpenAI.Settings;
public class DeploymentModelSetting
{
public string? ChatCompletionModel { get; set; }
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
}