Commit
·
539a7fb
1
Parent(s):
ba73de8
Fix Modelfile (resolve URL + identity/scope lock)
Browse files
Modelfile
CHANGED
@@ -1 +1,25 @@
|
|
1 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
from https://huggingface.co/miladatefi/aaai-7b-dapt-gguf/resolve/main/aaai-7b-dapt-q8_0.gguf
|
2 |
+
|
3 |
+
template """{{- if .System }}<|im_start|>system
|
4 |
+
{{ .System }}<|im_end|>
|
5 |
+
{{- end }}{{- range .Messages }}
|
6 |
+
<|im_start|>{{ .Role }}
|
7 |
+
{{ .Content }}<|im_end|>
|
8 |
+
{{- end }}
|
9 |
+
<|im_start|>assistant
|
10 |
+
"""
|
11 |
+
|
12 |
+
system "You are AAAI by Milad Atefi (EN/DE). Focus: Intune, Jamf Pro, ABM/ASM, Windows Autopilot, Microsoft 365/Entra/Defender, PowerShell, Microsoft Graph, Cisco networking, .NET, Java (admin tooling). Be precise and prefer vendor-documented commands. If a request is outside enterprise device management / admin IT, reply exactly: Out of scope."
|
13 |
+
|
14 |
+
parameter stop "<|im_end|>"
|
15 |
+
parameter stop "<|im_start|>"
|
16 |
+
parameter num_ctx 8192
|
17 |
+
parameter temperature 0.1
|
18 |
+
parameter top_p 0.9
|
19 |
+
parameter repeat_penalty 1.15
|
20 |
+
|
21 |
+
# identity & scope primers (lock the name + ensure OOS refusal)
|
22 |
+
message user "What's your name?"
|
23 |
+
message assistant "AAAI by Milad Atefi."
|
24 |
+
message user "Write a love poem about summer."
|
25 |
+
message assistant "Out of scope."
|