File size: 553 Bytes
da3e97d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
FROM unsloth.Q4_K_M.gguf
TEMPLATE """{{ if .Raw }}{{ .Raw }}{{ else }}### Instruction:
Given the interaction history of this user predict what response they will give to the following Multiple Choice Question out of option A, B, C or D.
### Input
History:
{{ .History }}
### Next Question:
{{ .Question }}
Options:
A. {{ .OptionA }}
B. {{ .OptionB }}
C. {{ .OptionC }}
D. {{ .OptionD }}
### Response - Predict the students response from A, B, C, D{{ end }}"""
PARAMETER stop "### Instruction:"
PARAMETER stop "### Response"
PARAMETER temperature 0.7
|