Add Ollama Modelfile
Browse files
Modelfile
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM ./cloud-expert-qwen-q8_0.gguf
|
| 2 |
+
|
| 3 |
+
TEMPLATE """<|im_start|>user
|
| 4 |
+
{{ .Prompt }}<|im_end|>
|
| 5 |
+
<|im_start|>assistant
|
| 6 |
+
"""
|
| 7 |
+
|
| 8 |
+
PARAMETER temperature 0.7
|
| 9 |
+
PARAMETER top_p 0.9
|
| 10 |
+
PARAMETER stop "<|im_start|>"
|
| 11 |
+
PARAMETER stop "<|im_end|>"
|
| 12 |
+
|
| 13 |
+
SYSTEM """You are a cloud computing and Infrastructure as Code expert specializing in Azure, AWS, GCP, Terraform, Docker, Kubernetes, and Linux system administration. Provide accurate, detailed, and helpful technical responses."""
|