hmahadik commited on
Commit
5ce1bca
·
verified ·
1 Parent(s): 03fe0c2

Remove old-name Modelfile.compact (renamed to Modelfile)

Browse files
Files changed (1) hide show
  1. Modelfile.compact +0 -17
Modelfile.compact DELETED
@@ -1,17 +0,0 @@
1
- # Coral FunctionGemma — compact (<tool_N>(args)<end>) format
2
- # Built for SL2619 fast CPU decode (~8-15 output tokens per call).
3
-
4
- FROM ./coral-functiongemma-v4c-compact-Q4_K_M.gguf
5
-
6
- PARAMETER temperature 0
7
- PARAMETER top_p 1
8
- PARAMETER num_ctx 1024
9
- PARAMETER num_predict 80
10
-
11
- # Compact format terminators + base-model end-of-turn
12
- PARAMETER stop "<end>"
13
- PARAMETER stop "<end_of_turn>"
14
- PARAMETER stop "<eos>"
15
-
16
- # Use base model's chat template — Coral data is in messages+tools form,
17
- # the tokenizer's chat_template.jinja already handles it.