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

8 lines
195 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; }
}