13 lines
359 B
C#
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}";
|
|
}
|
|
}
|