-
Notifications
You must be signed in to change notification settings - Fork 345
/
appsettings.json
40 lines (40 loc) · 993 Bytes
/
appsettings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"Logging": {
"LogLevel": {
"Default": "Information",
"Microsoft.AspNetCore": "Warning"
}
},
"AllowedHosts": "*",
"LLamaOptions": {
"ModelLoadType": 0,
"Models": [
{
"Name": "Example LLama2-7b-Chat",
"MaxInstances": 20,
"ModelPath": "..\\LLama.Unittest\\Models\\llama-2-7b-chat.Q4_0.gguf",
"ContextSize": 2048,
"BatchSize": 2048,
"Threads": 4,
"GpuLayerCount": 6,
"UseMemorymap": true,
"UseMemoryLock": false,
"MainGpu": 0,
"LowVram": false,
"Seed": 1686349486,
"UseFp16Memory": true,
"Perplexity": false,
"LoraAdapter": "",
"LoraBase": "",
"EmbeddingMode": false,
"TensorSplits": null,
"GroupedQueryAttention": 1,
"RmsNormEpsilon": 0.000005,
"RopeFrequencyBase": 10000.0,
"RopeFrequencyScale": 1.0,
"MulMatQ": false,
"Encoding": "UTF-8"
}
]
}
}