BotSharp/src/Infrastructure/BotSharp.Core/Plugins/LLamaSharp/LlamaSharpSettings.cs
2023-06-29 18:14:57 -05:00

12 lines
385 B
C#

namespace BotSharp.Core.Plugins.LLamaSharp;
public class LlamaSharpSettings
{
public string ModelPath { get; set; } = string.Empty;
public int MaxContextLength { get; set; } = 512;
public float RepeatPenalty { get; set; } = 1.0f;
public bool VerbosePrompt { get; set; }
public bool Interactive { get; set; } = true;
public int NumberOfGpuLayer { get; set; }
}