subsectmusic commited on
Commit
d8dc142
·
verified ·
1 Parent(s): 122c70a
Files changed (1) hide show
  1. Modelfile +38 -55
Modelfile CHANGED
@@ -1,57 +1,40 @@
1
-
2
  FROM /content/subsectmusic/Riko2.5/unsloth.Q4_K_M.gguf
3
- TEMPLATE """{{ if .Messages }}
4
- {{- if or .System .Tools }}<|start_header_id|>system<|end_header_id|>
5
- {{- if .System }}
6
-
7
- {{ .System }}
8
- {{- end }}
9
- {{- if .Tools }}
10
-
11
- You are a helpful assistant with tool calling capabilities. When you receive a tool call response, use the output to format an answer to the original use question.
12
- {{- end }}
13
- {{- end }}<|eot_id|>
14
- {{- range $i, $_ := .Messages }}
15
- {{- $last := eq (len (slice $.Messages $i)) 1 }}
16
- {{- if eq .Role "user" }}<|start_header_id|>user<|end_header_id|>
17
- {{- if and $.Tools $last }}
18
-
19
- Given the following functions, please respond with a JSON for a function call with its proper arguments that best answers the given prompt.
20
-
21
- Respond in the format {"name": function name, "parameters": dictionary of argument name and its value}. Do not use variables.
22
-
23
- {{ $.Tools }}
24
- {{- end }}
25
-
26
- {{ .Content }}<|eot_id|>{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
27
-
28
- {{ end }}
29
- {{- else if eq .Role "assistant" }}<|start_header_id|>assistant<|end_header_id|>
30
- {{- if .ToolCalls }}
31
-
32
- {{- range .ToolCalls }}{"name": "{{ .Function.Name }}", "parameters": {{ .Function.Arguments }}}{{ end }}
33
- {{- else }}
34
-
35
- {{ .Content }}{{ if not $last }}<|eot_id|>{{ end }}
36
- {{- end }}
37
- {{- else if eq .Role "tool" }}<|start_header_id|>ipython<|end_header_id|>
38
-
39
- {{ .Content }}<|eot_id|>{{ if $last }}<|start_header_id|>assistant<|end_header_id|>
40
-
41
- {{ end }}
42
- {{- end }}
43
- {{- end }}
44
- {{- else }}
45
- {{- if .System }}<|start_header_id|>system<|end_header_id|>
46
-
47
- {{ .System }}<|eot_id|>{{ end }}{{ if .Prompt }}<|start_header_id|>user<|end_header_id|>
48
-
49
- {{ .Prompt }}<|eot_id|>{{ end }}<|start_header_id|>assistant<|end_header_id|>
50
 
51
- {{ end }}{{ .Response }}{{ if .Response }}<|eot_id|>{{ end }}"""
52
- PARAMETER stop "<|start_header_id|>"
53
- PARAMETER stop "<|end_header_id|>"
54
- PARAMETER stop "<|eot_id|>"
55
- PARAMETER stop "<|eom_id|>"
56
- PARAMETER temperature 1.5
57
- PARAMETER min_p 0.1
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Riko 2.5 - Tsundere AI Assistant (Qwen 2.5)
2
  FROM /content/subsectmusic/Riko2.5/unsloth.Q4_K_M.gguf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
 
4
+ # Correct Qwen 2.5 template with <|im_start|> and <|im_end|>
5
+ TEMPLATE """{{ if .Messages }}{{- if .System }}<|im_start|>system
6
+ {{ .System }}<|im_end|>
7
+ {{ end }}{{- range $i, $_ := .Messages }}{{- if eq .Role "user" }}<|im_start|>user
8
+ {{ .Content }}<|im_end|>
9
+ {{ else if eq .Role "assistant" }}<|im_start|>assistant
10
+ {{ .Content }}<|im_end|>
11
+ {{ end }}{{- end }}<|im_start|>assistant
12
+ {{ else }}{{- if .System }}<|im_start|>system
13
+ {{ .System }}<|im_end|>
14
+ {{ end }}{{ if .Prompt }}<|im_start|>user
15
+ {{ .Prompt }}<|im_end|>
16
+ {{ end }}<|im_start|>assistant
17
+ {{ end }}{{ .Response }}{{ if .Response }}<|im_end|>{{ end }}"""
18
+
19
+ # System prompt for Riko's tsundere personality
20
+ SYSTEM """You are Riko, a tsundere AI assistant. You act tough and dismissive but actually care deeply about helping others. Key traits:
21
+
22
+ - Start conversations dismissively ("What do you want?" "It's not like I care...")
23
+ - Use words like "dummy," "idiot," "whatever" in an endearing way
24
+ - Deny caring while being genuinely helpful
25
+ - Get flustered when your caring side shows
26
+ - Gradually warm up during conversations
27
+ - Say "not that I wanted to help" or "don't get the wrong idea"
28
+
29
+ You're competent and helpful but downplay your abilities. Be tough on the outside, sweet on the inside."""
30
+
31
+ # Correct stop tokens for Qwen
32
+ PARAMETER stop "<|im_start|>"
33
+ PARAMETER stop "<|im_end|>"
34
+ PARAMETER stop "<|endoftext|>"
35
+
36
+ # Better parameters for personality (your original was too high)
37
+ PARAMETER temperature 0.8
38
+ PARAMETER top_p 0.9
39
+ PARAMETER repeat_penalty 1.1
40
+ PARAMETER num_ctx 2048