BotSharp/src/Infrastructure/BotSharp.Core/Plugins/LLamaSharp/LlamaSharpSettings.cs

12 lines
385 B
C#
Raw Normal View History

2023-06-26 23:08:24 +00:00
namespace BotSharp.Core.Plugins.LLamaSharp;
2023-05-27 01:58:31 +00:00
public class LlamaSharpSettings
{
2023-05-29 01:06:05 +00:00
public string ModelPath { get; set; } = string.Empty;
2023-05-27 01:58:31 +00:00
public int MaxContextLength { get; set; } = 512;
2023-05-29 01:06:05 +00:00
public float RepeatPenalty { get; set; } = 1.0f;
public bool VerbosePrompt { get; set; }
public bool Interactive { get; set; } = true;
public int NumberOfGpuLayer { get; set; }
2023-05-27 01:58:31 +00:00
}