existmaster commited on
Commit
b60e2d5
1 Parent(s): 7e6e3ce

Update Modelfile

Browse files
Files changed (1) hide show
  1. Modelfile +6 -13
Modelfile CHANGED
@@ -1,18 +1,11 @@
1
  FROM ./llama-3-8b-it-ko-chang-q4_0.gguf
2
 
3
- TEMPLATE """{{- if .System }}
4
- <|begin_of_text|>system {{ .System }}<|end_of_text|>
5
- {{- end }}
6
- <|begin_of_text|>B
7
- {{ .Prompt }}<|end_of_text|>
8
- <|begin_of_text|>A
9
- """
10
 
11
  SYSTEM """A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions."""
12
 
13
- PARAMETER temperature 0
14
- PARAMETER num_ctx 4096
15
- PARAMETER stop <|begin_of_text|>
16
- PARAMETER stop <|end_of_text|>
17
- PARAMETER stop <|eot_id|>
18
- PARAMETER stop <|end_of_text|>
 
1
  FROM ./llama-3-8b-it-ko-chang-q4_0.gguf
2
 
3
+ TEMPLATE """{{ if .System }}System: {{ .System }}{{ end }}
4
+ B:{{ .Prompt }}
5
+ A:"""
 
 
 
 
6
 
7
  SYSTEM """A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions."""
8
 
9
+ PARAMETER stop "System:"
10
+ PARAMETER stop "B:"
11
+ PARAMETER stop "A:"