Upload Modelfile
Browse files
Modelfile
ADDED
@@ -0,0 +1,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM bad_llm_dpov03-gguf-unsloth.Q4_K_M.gguf
|
2 |
+
# sets the context window size to 4096, this controls how many tokens the LLM can use as context to generate the next token
|
3 |
+
PARAMETER num_ctx 4096
|
4 |
+
|
5 |
+
PARAMETER temperature 0.7
|
6 |
+
TEMPLATE """
|
7 |
+
{{ if .System }}<|start_header_id|>system<|end_header_id|>
|
8 |
+
{{ .System }}<|eot_id|>
|
9 |
+
{{ end }}{{ if .Prompt }}<|start_header_id|>user<|end_header_id|>
|
10 |
+
{{ .Prompt }}<|eot_id|>
|
11 |
+
{{ end }}<|start_header_id|>assistant<|end_header_id|>
|
12 |
+
{{ .Response }}<|eot_id|>
|
13 |
+
"""
|
14 |
+
|
15 |
+
|
16 |
+
|
17 |
+
|
18 |
+
|
19 |
+
|