BotSharp/src/Infrastructure/BotSharp.Abstraction/MLTasks/Settings/ChatCompletionSetting.cs
2023-10-23 18:20:18 -05:00

8 lines
168 B
C#

namespace BotSharp.Abstraction.MLTasks.Settings;
public class ChatCompletionSetting
{
public string Provider { get; set; }
public string Model { get; set; }
}