Update README.md
Browse files
README.md
CHANGED
|
@@ -40,15 +40,20 @@ Unlike standard conversational LLMs, AegisNode Validate has been trained on a he
|
|
| 40 |
Because this model relies on the native DeepSeek-Coder template, you must use the correct instruction formatting. If you download the `.gguf` file, use the following `Modelfile` to run it in Ollama:
|
| 41 |
|
| 42 |
```text
|
| 43 |
-
FROM ./aegisnode-validate-6.7b
|
| 44 |
|
| 45 |
-
TEMPLATE """{{ if .System }}{{ .System }}
|
| 46 |
-
|
| 47 |
{{ .Prompt }}
|
| 48 |
### Response:
|
| 49 |
"""
|
| 50 |
|
| 51 |
-
SYSTEM """You are a Principal AWS Cloud Architect. Write flawless, enterprise-grade Terraform code. Output ONLY valid HCL."""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
```
|
| 53 |
|
| 54 |
Then create and run the model:
|
|
|
|
| 40 |
Because this model relies on the native DeepSeek-Coder template, you must use the correct instruction formatting. If you download the `.gguf` file, use the following `Modelfile` to run it in Ollama:
|
| 41 |
|
| 42 |
```text
|
| 43 |
+
FROM ./aegisnode-validate-6.7b.Q4_K_M.gguf
|
| 44 |
|
| 45 |
+
TEMPLATE """{{ if .System }}{{ .System }}{{ end }}
|
| 46 |
+
### Instruction:
|
| 47 |
{{ .Prompt }}
|
| 48 |
### Response:
|
| 49 |
"""
|
| 50 |
|
| 51 |
+
SYSTEM """You are a Principal AWS Cloud Architect. Write flawless, enterprise-grade Terraform code. Output ONLY valid HCL, no explanations or commentary."""
|
| 52 |
+
|
| 53 |
+
PARAMETER stop "### Instruction:"
|
| 54 |
+
PARAMETER stop "### Response:"
|
| 55 |
+
PARAMETER temperature 0.0
|
| 56 |
+
PARAMETER top_p 0.1
|
| 57 |
```
|
| 58 |
|
| 59 |
Then create and run the model:
|