BotSharp/src/Infrastructure/BotSharp.Abstraction/MLTasks/Settings/LlmConfigOptions.cs
2025-04-02 12:02:02 -05:00

9 lines
217 B
C#

namespace BotSharp.Abstraction.MLTasks.Settings;
public class LlmConfigOptions
{
public LlmModelType? Type { get; set; }
public bool? MultiModal { get; set; }
public bool? ImageGeneration { get; set; }
}