9 lines
220 B
C#
9 lines
220 B
C#
|
|
namespace BotSharp.Platform.LlamaSharp;
|
||
|
|
|
||
|
|
public class LlamaSharpSettings
|
||
|
|
{
|
||
|
|
public string ModelPath { get; set; }
|
||
|
|
public string InstructionFile { get; set; }
|
||
|
|
public int MaxContextLength { get; set; } = 512;
|
||
|
|
}
|