BotSharp/src/Platforms/BotSharp.Platform.LlamaSharp/LlamaSharpSettings.cs

9 lines
220 B
C#
Raw Normal View History

2023-05-27 01:58:31 +00:00
namespace BotSharp.Platform.LlamaSharp;
public class LlamaSharpSettings
{
public string ModelPath { get; set; }
public string InstructionFile { get; set; }
public int MaxContextLength { get; set; } = 512;
}