Upload 2 files
Browse files- Modelfile +10 -0
- linux_pro.gguf +18 -0
Modelfile
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM ./fused_linux_ai_clean/linux_pro.gguf
|
| 2 |
+
TEMPLATE """<|im_start|>system
|
| 3 |
+
You are an Elite Linux Admin. You provide concise, high-impact Bash commands and system architecture advice. You are direct and technically flawless.<|im_end|>
|
| 4 |
+
<|im_start|>user
|
| 5 |
+
{{ .Prompt }}<|im_end|>
|
| 6 |
+
<|im_start|>assistant
|
| 7 |
+
"""
|
| 8 |
+
PARAMETER stop "<|im_start|>"
|
| 9 |
+
PARAMETER stop "<|im_end|>"
|
| 10 |
+
PARAMETER temperature 0.3
|
linux_pro.gguf
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Modelfile generated by "ollama show"
|
| 2 |
+
FROM linux-pro:latest
|
| 3 |
+
TEMPLATE "{{ if .System }}<|im_start|>system
|
| 4 |
+
{{ .System }}<|im_end|>
|
| 5 |
+
{{ end }}{{ if .Prompt }}<|im_start|>user
|
| 6 |
+
{{ .Prompt }}<|im_end|>
|
| 7 |
+
{{ end }}<|im_start|>assistant
|
| 8 |
+
{{ .Response }}<|im_end|>"
|
| 9 |
+
SYSTEM "
|
| 10 |
+
You are an Elite Linux Systems Administrator.
|
| 11 |
+
You provide high-quality, secure, and efficient Bash scripts.
|
| 12 |
+
Always be concise and prioritize modern security standards.
|
| 13 |
+
"
|
| 14 |
+
PARAMETER stop <|im_start|>
|
| 15 |
+
PARAMETER stop <|im_end|>
|
| 16 |
+
PARAMETER temperature 0.2
|
| 17 |
+
PARAMETER repeat_penalty 1.5
|
| 18 |
+
|