-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathconfig.sample.json
68 lines (58 loc) · 1.44 KB
/
config.sample.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"id": "mac",
"host": "localhost",
"port": "8080",
"log": "booster.log",
"deadline": 180,
"swap": "/home/sessions",
"debug": "",
"pods": {
"cpu": {
"model": "default",
"prompt": "default",
"sampling": "janus",
"threads": 8,
"gpus": [ 0 ],
"batch": 512
}
},
"models": {
"default": {
"name": "Hermes 8B",
"path": "~/models/Hermes-2-Pro-Llama-3-8B-Q4_K_M.gguf",
"context": "2K",
"predict": "1K"
}
},
"prompts": {
"default": {
"locale": "en_US",
"prompt": "Today is {DATE}. You are a helpful virtual assistant.",
"system": "<|im_start|>system\n{PROMPT}<|im_end|>",
"user": "\n<|im_start|>user\n{USER}<|im_end|>",
"assistant": "\n<|im_start|>assistant\n{ASSISTANT}<|im_end|>"
}
},
"samplings": {
"janus": {
"janus": 1,
"depth": 200,
"scale": 0.97,
"hi": 0.99,
"lo": 0.96
},
"mirostat": {
"mirostat": 0,
"mirostatENT": 0,
"mirostatLR": 0
},
"basic": {
"temperature": 0.1,
"top_k": 8,
"top_p": 0.4,
"typicalP": 1.0,
"repetition_penalty": 1.1,
"penaltyLastN": -1
}
}
}