-
Notifications
You must be signed in to change notification settings - Fork 6
/
config.sample.yaml
66 lines (51 loc) · 984 Bytes
/
config.sample.yaml
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
# -- settings
id: mac
host: localhost
port: 8080
log: booster.log
deadline: 180
swap: /home/sessions
debug:
# -- pods
pods:
cpu:
model: default
prompt: default
sampling: janus
threads: 8
gpus: [ 0 ]
batch: 512
# -- models
models:
default:
name: Hermes 8B
path: ~/models/Hermes-2-Pro-Llama-3-8B-Q4_K_M.gguf
context: 8K
predict: 1K
# -- prompts
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
samplings:
janus:
janus: 1
depth: 200
scale: 0.97
hi: 0.99
lo: 0.96
mirostat:
mirostat: 2
mirostatent: 0.1
mirostatlr: 0.1
basic:
temperature: 0.1
top_k: 8
top_p: 0.4
typicalp: 1.0
repetition_penalty: 1.1
penaltylastn: -1