8 lines
168 B
C#
8 lines
168 B
C#
|
|
namespace BotSharp.Abstraction.MLTasks.Settings;
|
||
|
|
|
||
|
|
public class ChatCompletionSetting
|
||
|
|
{
|
||
|
|
public string Provider { get; set; }
|
||
|
|
public string Model { get; set; }
|
||
|
|
}
|