10 lines
257 B
C#
10 lines
257 B
C#
|
|
namespace BotSharp.Abstraction.MLTasks.Settings;
|
||
|
|
|
||
|
|
public class LlmConfigOptions
|
||
|
|
{
|
||
|
|
public LlmModelType? Type { get; set; }
|
||
|
|
public bool? MultiModal { get; set; }
|
||
|
|
public bool? RealTime { get; set; }
|
||
|
|
public bool? ImageGeneration { get; set; }
|
||
|
|
}
|