8 lines
195 B
C#
8 lines
195 B
C#
|
|
namespace BotSharp.Plugin.AzureOpenAI.Settings;
|
||
|
|
|
||
|
|
public class DeploymentModelSetting
|
||
|
|
{
|
||
|
|
public string? ChatCompletionModel { get; set; }
|
||
|
|
public string? TextCompletionModel { get; set; }
|
||
|
|
}
|