BotSharp/src/Plugins/BotSharp.Plugin.AzureOpenAI/Settings/DeploymentModelSetting.cs
2023-09-09 10:37:38 -05:00

13 lines
359 B
C#

namespace BotSharp.Plugin.AzureOpenAI.Settings;
public class DeploymentModelSetting
{
public string ChatCompletionModel { get; set; } = string.Empty;
public string? TextCompletionModel { get; set; }
public override string ToString()
{
return $"ChatCompletion - {ChatCompletionModel}, TextCompletion - {TextCompletionModel}";
}
}