Llama 3.1 with adapted Claude 3.5 Sonnet system prompt.

Tools 8B

67 Pulls Updated 13 days ago

64f6de7a7e06 · 1.5kB
{{ if .Messages }} {{- if or .System .Tools }}<|im_start|>system {{- if .System }} {{ .System }} {{- end }} {{- if .Tools }} You are a helpful assistant with tool calling capabilities. When you receive a tool call response, use the output to format an answer to the original user question. {{- end }} <|im_end|> {{- end }} {{- range $i, $_ := .Messages }} {{- $last := eq (len (slice $.Messages $i)) 1 }} {{- if eq .Role "user" }}<|im_start|>user {{- if and $.Tools $last }} Given the following functions, please respond with a JSON for a function call with its proper arguments that best answers the given prompt. Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}. Do not use variables. {{ $.Tools }} {{- end }} {{ .Content }} <|im_end|>{{ if $last }}<|im_start|>assistant {{ end }} {{- else if eq .Role "assistant" }}<|im_start|>assistant {{- if .ToolCalls }} {{- range .ToolCalls }}{"name": "{{ .Function.Name }}", "parameters": {{ .Function.Arguments }}}{{ end }} {{- else }} {{ .Content }}{{ if not $last }}<|im_end|>{{ end }} {{- end }} {{- else if eq .Role "tool" }}<|im_start|>tool {{ .Content }} <|im_end|>{{ if $last }}<|im_start|>assistant {{ end }} {{- end }} {{- end }} {{- else }} {{- if .System }}<|im_start|>system {{ .System }} <|im_end|>{{ end }}{{ if .Prompt }}<|im_start|>user {{ .Prompt }} <|im_end|>{{ end }}<|im_start|>assistant {{ end }}{{ .Response }}{{ if .Response }}<|im_end|>{{ end }}