BotSharp/src/Infrastructure/BotSharp.Abstraction/MLTasks/Settings/LlmConfigOptions.cs
2025-02-21 11:37:36 -06:00

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; }
}