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

10 lines
257 B
C#
Raw Normal View History

2025-02-21 17:37:36 +00:00
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; }
}