Models
Docs
Pricing
Sign in
Download
Models
Download
Docs
Pricing
Sign in
comethrusws
/
sage-reasoning
:8b
211
Downloads
Updated
6 months ago
SAGE v1 Preview is a family of hybrid reasoning models by SAGEA that outperform best available open models of the same size, including counterparts from LLaMA, DeepSeek, and Qwen, across most standard benchmarks.
SAGE v1 Preview is a family of hybrid reasoning models by SAGEA that outperform best available open models of the same size, including counterparts from LLaMA, DeepSeek, and Qwen, across most standard benchmarks.
Cancel
tools
3b
8b
14b
sage-reasoning:8b
...
/
template
783adfd1d253 · 976B
{{- if or .System .Tools }}<|start_header_id|>system<|end_header_id|>
{{- if .System }}
{{ .System }}
{{- end }}
{{- if .Tools }}
Available Tools:
{{ range $.Tools }}{{- . }}
{{ end }}
{{ end }}<|eot_id|>
{{- end }}
{{- range $i, $_ := .Messages }}
{{- $last := eq (len (slice $.Messages $i)) 1 }}
{{- if eq .Role "user" }}<|start_header_id|>user<|end_header_id|>
{{ .Content }}<|eot_id|>{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
{{ end }}
{{- else if eq .Role "assistant" }}<|start_header_id|>assistant<|end_header_id|>
{{- if .ToolCalls }}
{{ range .ToolCalls }}
<tool_call>
{"name": "{{ .Function.Name }}", "arguments": {{ .Function.Arguments }}}
</tool_call>{{ end }}
{{- else }}
{{ .Content }}
{{- end }}{{ if not $last }}<|eot_id|>{{ end }}
{{- else if eq .Role "tool" }}<|start_header_id|>ipython<|end_header_id|>
{"content": "{{ .Content }}"}<|eot_id|>{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
{{ end }}
{{- end }}
{{- end }}