CoolFace
Modelpublic

truongsmart/JSON-to-HTML

sourceHugging Faceupdated 1mo agoView on Hugging Face
0likes170downloads
Modelfile15 linesDownload Raw Back to root
1 2FROM llama-3-8b-instruct.Q4_K_M.gguf3TEMPLATE """{{ if .System }}<|start_header_id|>system<|end_header_id|>4 5{{ .System }}<|eot_id|>{{ end }}{{ if .Prompt }}<|start_header_id|>user<|end_header_id|>6 7{{ .Prompt }}<|eot_id|>{{ end }}<|start_header_id|>assistant<|end_header_id|>8 9{{ .Response }}<|eot_id|>"""10PARAMETER num_keep 2411PARAMETER stop "<|start_header_id|>"12PARAMETER stop "<|end_header_id|>"13PARAMETER stop "<|eot_id|>"14PARAMETER temperature 1.515PARAMETER min_p 0.1