BotSharp/src/Infrastructure/BotSharp.Abstraction/MLTasks/Settings/ChatCompletionSetting.cs

8 lines
168 B
C#
Raw Normal View History

2023-10-23 23:20:18 +00:00
namespace BotSharp.Abstraction.MLTasks.Settings;
public class ChatCompletionSetting
{
public string Provider { get; set; }
public string Model { get; set; }
}