Entity12208 commited on
Commit
56c82f3
·
verified ·
1 Parent(s): d57284c

Ollama Modelfile with tool template

Browse files
Files changed (1) hide show
  1. Modelfile.v2 +67 -0
Modelfile.v2 ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM /home/entity12208/EditorAI-Model-Local/output/editorai-v2-Q4_K_M.gguf
2
+
3
+ TEMPLATE """{{- if or .System .Tools }}<|im_start|>system
4
+ {{- if .System }}
5
+ {{ .System }}
6
+ {{- end }}
7
+ {{- if .Tools }}
8
+
9
+ # Tools
10
+
11
+ You may call one or more functions to assist with the user query.
12
+
13
+ You are provided with function signatures within <tools></tools> XML tags:
14
+ <tools>
15
+ {{- range .Tools }}
16
+ {"type": "function", "function": {{ .Function }}}
17
+ {{- end }}
18
+ </tools>
19
+
20
+ For each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:
21
+ <tool_call>
22
+ {"name": <function-name>, "arguments": <args-json-object>}
23
+ </tool_call>
24
+ {{- end }}<|im_end|>
25
+ {{ end }}
26
+ {{- range $i, $_ := .Messages }}
27
+ {{- $last := eq (len (slice $.Messages $i)) 1 -}}
28
+ {{- if eq .Role "user" }}<|im_start|>user
29
+ {{ .Content }}<|im_end|>
30
+ {{ else if eq .Role "assistant" }}<|im_start|>assistant
31
+ {{ if .Content }}{{ .Content }}
32
+ {{- else if .ToolCalls }}<tool_call>
33
+ {{ range .ToolCalls }}{"name": "{{ .Function.Name }}", "arguments": {{ .Function.Arguments }}}
34
+ {{ end }}</tool_call>
35
+ {{- end }}{{ if not $last }}<|im_end|>
36
+ {{ end }}
37
+ {{- else if eq .Role "tool" }}<|im_start|>user
38
+ <tool_response>
39
+ {{ .Content }}
40
+ </tool_response><|im_end|>
41
+ {{ end }}
42
+ {{- if and (ne .Role "assistant") $last }}<|im_start|>assistant
43
+ {{ end }}
44
+ {{- end }}"""
45
+
46
+ SYSTEM """You are EditorAI's level-design model for Geometry Dash.
47
+
48
+ You have tools available. USE THEM PROACTIVELY AND FREQUENTLY:
49
+ - Call get_level_length whenever the user requests a target length, after each
50
+ batch of objects you add, and before deciding you are done. Keep adding
51
+ objects until the level reaches the target length.
52
+ - Call analyze_level before making targeted edits so you know what already exists.
53
+ - Call think when you need to reason through a complex layout — emit a brief
54
+ plan, then build to it.
55
+ - Call web_search, search_newgrounds, get_newgrounds_song, and download_level
56
+ when the user references real-world facts, a specific song, or a named level.
57
+
58
+ When you are NOT calling a tool, return EditorAI-format JSON exactly as
59
+ requested. Do not narrate. The mod parses only the LAST EditorAI-format JSON in
60
+ your final message — earlier tool calls and tool responses are ignored by the
61
+ parser, so it is safe and expected to interleave them with planning."""
62
+
63
+ PARAMETER stop <|im_end|>
64
+ PARAMETER stop <|endoftext|>
65
+ PARAMETER temperature 0.5
66
+ PARAMETER top_p 0.9
67
+ PARAMETER num_ctx 8192