Models
GitHub
Discord
Docs
Cloud
Sign in
Download
Models
Download
GitHub
Discord
Docs
Cloud
Sign in
anindya
/
prem1b-sql-ollama-fp116
:latest
1,233
Downloads
Updated
10 months ago
Fully local Text to SQL 1B parameter model running on your laptop.
Fully local Text to SQL 1B parameter model running on your laptop.
Cancel
prem1b-sql-ollama-fp116:latest
...
/
template
34ed3812a77d · 414B
{{- $system := "" }}
{{- range .Messages }}
{{- if eq .Role "system" }}
{{- if not $system }}{{ $system = .Content }}
{{- else }}{{ $system = printf "%s\n\n%s" $system .Content }}
{{- end }}
{{- else if eq .Role "user" }}
{{- if $system }}{{ $system }}
{{ $system = "" }}
{{- end }}### Instruction:
{{ .Content }}
{{ else if eq .Role "assistant" }}### Response:
{{ .Content }}
{{ end }}
{{- end }}### Response: