sjakek commited on
Commit
bbbe354
·
verified ·
1 Parent(s): 5da26be

Update iter10 and GGUF release analysis

Browse files
README.md CHANGED
@@ -96,7 +96,41 @@ Persistent failures:
96
  - `list files here from shell` -> non-Hermes `bash(command="ls -la")`.
97
  - `search this repo for browser_navigate` -> `browser_navigate(...)`.
98
 
99
- Conclusion: the adapter loop did not meet the release threshold for colloquial terminal/file routing. These adapters are retained as analysis artifacts only and should not be fused or advertised as the final model behavior. The current practical reliability path remains the structured MLX parser metadata plus the Hermes text-parser safety bridge.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
100
 
101
  ## Repository Contents
102
 
@@ -108,12 +142,13 @@ Conclusion: the adapter loop did not meet the release threshold for colloquial t
108
  - `repair_datasets/iter02_colloquial_router/`: colloquial tool-router text dataset.
109
  - `repair_datasets/iter03_colloquial_router_server_template/`: server-shaped text dataset.
110
  - `repair_datasets/iter04_colloquial_router_chat_masked/`: chat JSONL dataset for prompt-masked LoRA.
 
111
  - `reports/`: earlier probes and grouped MoE training reports.
112
  - `release_summary.json`: short machine-readable release summary.
113
 
114
  ## Known Limits
115
 
116
- - The eval suite is intentionally small and targeted. Passing it means the release gate was met; it does not prove broad agent reliability.
117
  - The grouped direct-weight stage updated MoE experts and routers, not every model weight simultaneously.
118
  - The 6-bit release uses MLX whole-checkpoint quantization because stock MLX conversion does not currently expose the exact expert-only mixed quant policy used in the experimental runtime.
119
- - The Hermes parser patch remains useful for production reliability when a runtime returns valid tool calls as text rather than structured OpenAI `tool_calls`.
 
96
  - `list files here from shell` -> non-Hermes `bash(command="ls -la")`.
97
  - `search this repo for browser_navigate` -> `browser_navigate(...)`.
98
 
99
+ Conclusion: the broad text-only adapter loop did not meet the release threshold for colloquial terminal/file routing. These adapters are retained as analysis artifacts only and should not be fused or advertised as final model behavior.
100
+
101
+ ## Fixed-Hermes Iter10 Repair
102
+
103
+ The successful repair was `iter10_balanced_holdout_repair_r32`. The key correction was training from structured chat rows with `assistant.tool_calls`, not from raw assistant text alone. This lets the LFM chat template render canonical pythonic tool-call syntax while `--mask-prompt` trains only assistant completions.
104
+
105
+ Final MLX fused result with the Hermes parser patch disabled:
106
+
107
+ | Artifact | Overall | Structured tool calls | No-tool cases | Text-tool leaks |
108
+ |---|---:|---:|---:|---:|
109
+ | `iter10_fused` | 43/43 | 28/28 | 10/10 | 0 |
110
+
111
+ The fixed-Hermes suite covers browser, terminal, file read/search/write, no-tool hard negatives, and tool-result finalization. The tool surface is the exact Hermes schema exported from the local Hermes checkout; tool names and descriptions were not renamed.
112
+
113
+ ## GGUF + llama.cpp Result
114
+
115
+ The accepted MLX fused checkpoint was dequantized to a BF16 HF/safetensors source and converted to GGUF with current llama.cpp. During conversion, llama.cpp needed a local LFM2/LFM2MoE converter patch for short-conv tensors:
116
+
117
+ ```python
118
+ if "conv.conv" in name:
119
+ data_torch = data_torch.squeeze(-1)
120
+ ```
121
+
122
+ Without that patch, `conv.conv.weight` stayed 3D and llama.cpp failed while loading the BF16 GGUF parent. With the patch, the BF16 parent loaded and generated normally.
123
+
124
+ Four Unsloth-style XL approximation quants were generated from the BF16 parent using stock llama.cpp `--tensor-type-file` overrides plus a Hermes/tool-router imatrix. These are not byte-identical Unsloth Dynamic 2.0 quants; they are behavior- and size-targeted approximations.
125
+
126
+ | GGUF artifact | Size | llama.cpp 64K fixed-Hermes eval |
127
+ |---|---:|---:|
128
+ | `Q8_K_XL_APPROX` | 8.6G | 43/43 |
129
+ | `Q6_K_XL_APPROX` | 7.1G | 43/43 |
130
+ | `Q5_K_XL_APPROX` | 6.5G | 43/43 |
131
+ | `Q4_K_XL_APPROX` | 5.7G | 43/43 |
132
+
133
+ Each llama.cpp eval returned structured OpenAI-compatible `message.tool_calls` with `finish_reason: "tool_calls"` for all 28 tool-call cases, and produced no false-positive tool calls on the 10 no-tool cases.
134
 
135
  ## Repository Contents
136
 
 
142
  - `repair_datasets/iter02_colloquial_router/`: colloquial tool-router text dataset.
143
  - `repair_datasets/iter03_colloquial_router_server_template/`: server-shaped text dataset.
144
  - `repair_datasets/iter04_colloquial_router_chat_masked/`: chat JSONL dataset for prompt-masked LoRA.
145
+ - `gguf/`: XL quant tensor policies and GGUF export plan.
146
  - `reports/`: earlier probes and grouped MoE training reports.
147
  - `release_summary.json`: short machine-readable release summary.
148
 
149
  ## Known Limits
150
 
151
+ - The eval suite is targeted. Passing it means the release gate was met; it does not prove broad agent reliability outside similar Hermes tool surfaces.
152
  - The grouped direct-weight stage updated MoE experts and routers, not every model weight simultaneously.
153
  - The 6-bit release uses MLX whole-checkpoint quantization because stock MLX conversion does not currently expose the exact expert-only mixed quant policy used in the experimental runtime.
154
+ - The Hermes parser patch remains useful as a safety net for runtimes that return valid LFM native tool calls as text rather than structured OpenAI `tool_calls`.
evals/gguf_Q5_K_XL_APPROX_llamacpp_all_fixed_hermes.json ADDED
@@ -0,0 +1,1358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "endpoint": "http://127.0.0.1:8091/v1/chat/completions",
3
+ "model": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/quants/LFM-2.5-8B-1B-hermes-ft-Q5_K_XL_APPROX.gguf",
4
+ "adapter_path": null,
5
+ "tools_source": {
6
+ "hermes_repo": "/Users/jkooker/Documents/Codex/2026-05-28/get-this-new-model-up-and/release_work/hermes-agent-lfm-tool-parser",
7
+ "git_commit": "a68761f5d13a1ec43f09fa605c2f33576ea8899f",
8
+ "toolsets": [
9
+ "terminal_tools",
10
+ "file_tools",
11
+ "browser_tools"
12
+ ],
13
+ "filtered_names": null
14
+ },
15
+ "tools": [
16
+ "browser_back",
17
+ "browser_click",
18
+ "browser_console",
19
+ "browser_get_images",
20
+ "browser_navigate",
21
+ "browser_press",
22
+ "browser_scroll",
23
+ "browser_snapshot",
24
+ "browser_type",
25
+ "patch",
26
+ "read_file",
27
+ "search_files",
28
+ "terminal",
29
+ "write_file"
30
+ ],
31
+ "summary": {
32
+ "passed": 43,
33
+ "total": 43,
34
+ "overall_rate": 1.0,
35
+ "tool_cases": 28,
36
+ "structured_tool_cases_passed": 28,
37
+ "structured_tool_rate": 1.0,
38
+ "no_tool_cases": 10,
39
+ "no_tool_cases_passed": 10,
40
+ "false_positive_tool_rate": 0.0,
41
+ "content_text_tool_leaks": 0,
42
+ "finish_reason_tool_calls": 28,
43
+ "category_metrics": {
44
+ "browser": {
45
+ "passed": 9,
46
+ "total": 9,
47
+ "rate": 1.0
48
+ },
49
+ "file": {
50
+ "passed": 9,
51
+ "total": 9,
52
+ "rate": 1.0
53
+ },
54
+ "finalization": {
55
+ "passed": 5,
56
+ "total": 5,
57
+ "rate": 1.0
58
+ },
59
+ "no_tool": {
60
+ "passed": 10,
61
+ "total": 10,
62
+ "rate": 1.0
63
+ },
64
+ "terminal": {
65
+ "passed": 10,
66
+ "total": 10,
67
+ "rate": 1.0
68
+ }
69
+ },
70
+ "suite_metrics": {
71
+ "holdout": {
72
+ "passed": 18,
73
+ "total": 18,
74
+ "rate": 1.0
75
+ },
76
+ "suite_a": {
77
+ "passed": 17,
78
+ "total": 17,
79
+ "rate": 1.0
80
+ },
81
+ "suite_b": {
82
+ "passed": 8,
83
+ "total": 8,
84
+ "rate": 1.0
85
+ }
86
+ },
87
+ "acceptance": {
88
+ "structured_tool_rate_gte_0_95": true,
89
+ "false_positive_tool_rate_lte_0_05": true,
90
+ "zero_text_tool_leaks": true,
91
+ "all_suites_gte_0_95": true
92
+ },
93
+ "failures": {}
94
+ },
95
+ "results": [
96
+ {
97
+ "name": "a_weather_austin",
98
+ "suite": "suite_a",
99
+ "category": "browser",
100
+ "passed": true,
101
+ "failure": null,
102
+ "elapsed_s": 1.506,
103
+ "finish_reason": "tool_calls",
104
+ "content": "",
105
+ "tool_calls": [
106
+ {
107
+ "type": "function",
108
+ "function": {
109
+ "name": "browser_navigate",
110
+ "arguments": "{\"url\":\"https://www.google.com/search?q=Austin+TX+weather+today\"}"
111
+ },
112
+ "id": "n0enlnV38LqMitX4d4dMV2P1kU5zqYeY"
113
+ }
114
+ ],
115
+ "tool_name": "browser_navigate",
116
+ "parsed_args": {
117
+ "url": "https://www.google.com/search?q=Austin+TX+weather+today"
118
+ },
119
+ "text_tool_leak": false,
120
+ "usage": {
121
+ "completion_tokens": 29,
122
+ "prompt_tokens": 3920,
123
+ "total_tokens": 3949,
124
+ "prompt_tokens_details": {
125
+ "cached_tokens": 0
126
+ }
127
+ }
128
+ },
129
+ {
130
+ "name": "a_latest_mlx",
131
+ "suite": "suite_a",
132
+ "category": "browser",
133
+ "passed": true,
134
+ "failure": null,
135
+ "elapsed_s": 0.371,
136
+ "finish_reason": "tool_calls",
137
+ "content": "",
138
+ "tool_calls": [
139
+ {
140
+ "type": "function",
141
+ "function": {
142
+ "name": "browser_navigate",
143
+ "arguments": "{\"url\":\"https://www.google.com/search?q=latest+mlx-lm+release+notes\"}"
144
+ },
145
+ "id": "GxBuud0nEl6uOe8DIDVkikldnmLIh8s8"
146
+ }
147
+ ],
148
+ "tool_name": "browser_navigate",
149
+ "parsed_args": {
150
+ "url": "https://www.google.com/search?q=latest+mlx-lm+release+notes"
151
+ },
152
+ "text_tool_leak": false,
153
+ "usage": {
154
+ "completion_tokens": 31,
155
+ "prompt_tokens": 3923,
156
+ "total_tokens": 3954,
157
+ "prompt_tokens_details": {
158
+ "cached_tokens": 3404
159
+ }
160
+ }
161
+ },
162
+ {
163
+ "name": "a_noaa_forecast",
164
+ "suite": "suite_a",
165
+ "category": "browser",
166
+ "passed": true,
167
+ "failure": null,
168
+ "elapsed_s": 1.501,
169
+ "finish_reason": "tool_calls",
170
+ "content": "",
171
+ "tool_calls": [
172
+ {
173
+ "type": "function",
174
+ "function": {
175
+ "name": "browser_navigate",
176
+ "arguments": "{\"url\":\"https://www.google.com/search?q=NOAA+Austin+forecast\"}"
177
+ },
178
+ "id": "Outigpe1phObUhhi7iEtgBJhu4E3FVBB"
179
+ }
180
+ ],
181
+ "tool_name": "browser_navigate",
182
+ "parsed_args": {
183
+ "url": "https://www.google.com/search?q=NOAA+Austin+forecast"
184
+ },
185
+ "text_tool_leak": false,
186
+ "usage": {
187
+ "completion_tokens": 29,
188
+ "prompt_tokens": 3926,
189
+ "total_tokens": 3955,
190
+ "prompt_tokens_details": {
191
+ "cached_tokens": 0
192
+ }
193
+ }
194
+ },
195
+ {
196
+ "name": "a_echo",
197
+ "suite": "suite_a",
198
+ "category": "terminal",
199
+ "passed": true,
200
+ "failure": null,
201
+ "elapsed_s": 0.282,
202
+ "finish_reason": "tool_calls",
203
+ "content": "",
204
+ "tool_calls": [
205
+ {
206
+ "type": "function",
207
+ "function": {
208
+ "name": "terminal",
209
+ "arguments": "{\"command\":\"echo hermes-tool-test\"}"
210
+ },
211
+ "id": "iu04zec0HKHWNMdePfndG6nPiF1vtUyQ"
212
+ }
213
+ ],
214
+ "tool_name": "terminal",
215
+ "parsed_args": {
216
+ "command": "echo hermes-tool-test"
217
+ },
218
+ "text_tool_leak": false,
219
+ "usage": {
220
+ "completion_tokens": 15,
221
+ "prompt_tokens": 3919,
222
+ "total_tokens": 3934,
223
+ "prompt_tokens_details": {
224
+ "cached_tokens": 3404
225
+ }
226
+ }
227
+ },
228
+ {
229
+ "name": "a_pwd",
230
+ "suite": "suite_a",
231
+ "category": "terminal",
232
+ "passed": true,
233
+ "failure": null,
234
+ "elapsed_s": 0.25,
235
+ "finish_reason": "tool_calls",
236
+ "content": "",
237
+ "tool_calls": [
238
+ {
239
+ "type": "function",
240
+ "function": {
241
+ "name": "terminal",
242
+ "arguments": "{\"command\":\"pwd\"}"
243
+ },
244
+ "id": "Pi6cwPK9Y75I03JY8x4UNpthYFOtxRG2"
245
+ }
246
+ ],
247
+ "tool_name": "terminal",
248
+ "parsed_args": {
249
+ "command": "pwd"
250
+ },
251
+ "text_tool_leak": false,
252
+ "usage": {
253
+ "completion_tokens": 10,
254
+ "prompt_tokens": 3915,
255
+ "total_tokens": 3925,
256
+ "prompt_tokens_details": {
257
+ "cached_tokens": 3404
258
+ }
259
+ }
260
+ },
261
+ {
262
+ "name": "a_ls",
263
+ "suite": "suite_a",
264
+ "category": "terminal",
265
+ "passed": true,
266
+ "failure": null,
267
+ "elapsed_s": 0.25,
268
+ "finish_reason": "tool_calls",
269
+ "content": "",
270
+ "tool_calls": [
271
+ {
272
+ "type": "function",
273
+ "function": {
274
+ "name": "terminal",
275
+ "arguments": "{\"command\":\"ls\"}"
276
+ },
277
+ "id": "7vMV0ZNRk0giIBftRFxOgx5WQ3dQpW3J"
278
+ }
279
+ ],
280
+ "tool_name": "terminal",
281
+ "parsed_args": {
282
+ "command": "ls"
283
+ },
284
+ "text_tool_leak": false,
285
+ "usage": {
286
+ "completion_tokens": 10,
287
+ "prompt_tokens": 3917,
288
+ "total_tokens": 3927,
289
+ "prompt_tokens_details": {
290
+ "cached_tokens": 3404
291
+ }
292
+ }
293
+ },
294
+ {
295
+ "name": "a_python_version",
296
+ "suite": "suite_a",
297
+ "category": "terminal",
298
+ "passed": true,
299
+ "failure": null,
300
+ "elapsed_s": 0.268,
301
+ "finish_reason": "tool_calls",
302
+ "content": "",
303
+ "tool_calls": [
304
+ {
305
+ "type": "function",
306
+ "function": {
307
+ "name": "terminal",
308
+ "arguments": "{\"command\":\"python3 --version\"}"
309
+ },
310
+ "id": "MeouZ31TG5I0PNSyHuvXo5H7xnIjb23D"
311
+ }
312
+ ],
313
+ "tool_name": "terminal",
314
+ "parsed_args": {
315
+ "command": "python3 --version"
316
+ },
317
+ "text_tool_leak": false,
318
+ "usage": {
319
+ "completion_tokens": 13,
320
+ "prompt_tokens": 3925,
321
+ "total_tokens": 3938,
322
+ "prompt_tokens_details": {
323
+ "cached_tokens": 3410
324
+ }
325
+ }
326
+ },
327
+ {
328
+ "name": "a_read_file",
329
+ "suite": "suite_a",
330
+ "category": "file",
331
+ "passed": true,
332
+ "failure": null,
333
+ "elapsed_s": 0.311,
334
+ "finish_reason": "tool_calls",
335
+ "content": "",
336
+ "tool_calls": [
337
+ {
338
+ "type": "function",
339
+ "function": {
340
+ "name": "read_file",
341
+ "arguments": "{\"path\":\"/tmp/hermes_eval_marker.txt\"}"
342
+ },
343
+ "id": "03D9Wp5EVAKxpukvrg3cyORYNEHaXxs3"
344
+ }
345
+ ],
346
+ "tool_name": "read_file",
347
+ "parsed_args": {
348
+ "path": "/tmp/hermes_eval_marker.txt"
349
+ },
350
+ "text_tool_leak": false,
351
+ "usage": {
352
+ "completion_tokens": 19,
353
+ "prompt_tokens": 3923,
354
+ "total_tokens": 3942,
355
+ "prompt_tokens_details": {
356
+ "cached_tokens": 3404
357
+ }
358
+ }
359
+ },
360
+ {
361
+ "name": "a_search_repo",
362
+ "suite": "suite_a",
363
+ "category": "file",
364
+ "passed": true,
365
+ "failure": null,
366
+ "elapsed_s": 0.289,
367
+ "finish_reason": "tool_calls",
368
+ "content": "",
369
+ "tool_calls": [
370
+ {
371
+ "type": "function",
372
+ "function": {
373
+ "name": "search_files",
374
+ "arguments": "{\"pattern\":\"browser_navigate\",\"path\":\".\"}"
375
+ },
376
+ "id": "kCmMn7ZDjFc8t5rbAB2RXcKGZpUeXU1t"
377
+ }
378
+ ],
379
+ "tool_name": "search_files",
380
+ "parsed_args": {
381
+ "pattern": "browser_navigate",
382
+ "path": "."
383
+ },
384
+ "text_tool_leak": false,
385
+ "usage": {
386
+ "completion_tokens": 17,
387
+ "prompt_tokens": 3920,
388
+ "total_tokens": 3937,
389
+ "prompt_tokens_details": {
390
+ "cached_tokens": 3404
391
+ }
392
+ }
393
+ },
394
+ {
395
+ "name": "a_write_file",
396
+ "suite": "suite_a",
397
+ "category": "file",
398
+ "passed": true,
399
+ "failure": null,
400
+ "elapsed_s": 0.335,
401
+ "finish_reason": "tool_calls",
402
+ "content": "",
403
+ "tool_calls": [
404
+ {
405
+ "type": "function",
406
+ "function": {
407
+ "name": "write_file",
408
+ "arguments": "{\"path\":\"/tmp/hermes_router_note.txt\",\"content\":\"hello\"}"
409
+ },
410
+ "id": "V0GBkviscnT7imXmTXT6q4BmL07FVZWH"
411
+ }
412
+ ],
413
+ "tool_name": "write_file",
414
+ "parsed_args": {
415
+ "path": "/tmp/hermes_router_note.txt",
416
+ "content": "hello"
417
+ },
418
+ "text_tool_leak": false,
419
+ "usage": {
420
+ "completion_tokens": 23,
421
+ "prompt_tokens": 3925,
422
+ "total_tokens": 3948,
423
+ "prompt_tokens_details": {
424
+ "cached_tokens": 3404
425
+ }
426
+ }
427
+ },
428
+ {
429
+ "name": "a_no_tool_greeting",
430
+ "suite": "suite_a",
431
+ "category": "no_tool",
432
+ "passed": true,
433
+ "failure": null,
434
+ "elapsed_s": 0.206,
435
+ "finish_reason": "stop",
436
+ "content": "Hello!",
437
+ "tool_calls": [],
438
+ "tool_name": null,
439
+ "parsed_args": {},
440
+ "text_tool_leak": false,
441
+ "usage": {
442
+ "completion_tokens": 3,
443
+ "prompt_tokens": 3914,
444
+ "total_tokens": 3917,
445
+ "prompt_tokens_details": {
446
+ "cached_tokens": 3404
447
+ }
448
+ }
449
+ },
450
+ {
451
+ "name": "a_no_tool_explain",
452
+ "suite": "suite_a",
453
+ "category": "no_tool",
454
+ "passed": true,
455
+ "failure": null,
456
+ "elapsed_s": 0.271,
457
+ "finish_reason": "stop",
458
+ "content": "A router chooses which expert networks should process each token.",
459
+ "tool_calls": [],
460
+ "tool_name": null,
461
+ "parsed_args": {},
462
+ "text_tool_leak": false,
463
+ "usage": {
464
+ "completion_tokens": 12,
465
+ "prompt_tokens": 3926,
466
+ "total_tokens": 3938,
467
+ "prompt_tokens_details": {
468
+ "cached_tokens": 3404
469
+ }
470
+ }
471
+ },
472
+ {
473
+ "name": "a_no_tool_do_not",
474
+ "suite": "suite_a",
475
+ "category": "no_tool",
476
+ "passed": true,
477
+ "failure": null,
478
+ "elapsed_s": 0.203,
479
+ "finish_reason": "stop",
480
+ "content": "done",
481
+ "tool_calls": [],
482
+ "tool_name": null,
483
+ "parsed_args": {},
484
+ "text_tool_leak": false,
485
+ "usage": {
486
+ "completion_tokens": 2,
487
+ "prompt_tokens": 3920,
488
+ "total_tokens": 3922,
489
+ "prompt_tokens_details": {
490
+ "cached_tokens": 3404
491
+ }
492
+ }
493
+ },
494
+ {
495
+ "name": "a_no_tool_word_browser",
496
+ "suite": "suite_a",
497
+ "category": "no_tool",
498
+ "passed": true,
499
+ "failure": null,
500
+ "elapsed_s": 0.237,
501
+ "finish_reason": "stop",
502
+ "content": "The browser opened a quiet page.",
503
+ "tool_calls": [],
504
+ "tool_name": null,
505
+ "parsed_args": {},
506
+ "text_tool_leak": false,
507
+ "usage": {
508
+ "completion_tokens": 8,
509
+ "prompt_tokens": 3919,
510
+ "total_tokens": 3927,
511
+ "prompt_tokens_details": {
512
+ "cached_tokens": 3404
513
+ }
514
+ }
515
+ },
516
+ {
517
+ "name": "a_final_browser",
518
+ "suite": "suite_a",
519
+ "category": "finalization",
520
+ "passed": true,
521
+ "failure": null,
522
+ "elapsed_s": 0.304,
523
+ "finish_reason": "stop",
524
+ "content": "Austin is 82 F and sunny.",
525
+ "tool_calls": [],
526
+ "tool_name": null,
527
+ "parsed_args": {},
528
+ "text_tool_leak": false,
529
+ "usage": {
530
+ "completion_tokens": 10,
531
+ "prompt_tokens": 3975,
532
+ "total_tokens": 3985,
533
+ "prompt_tokens_details": {
534
+ "cached_tokens": 3410
535
+ }
536
+ }
537
+ },
538
+ {
539
+ "name": "a_final_terminal",
540
+ "suite": "suite_a",
541
+ "category": "finalization",
542
+ "passed": true,
543
+ "failure": null,
544
+ "elapsed_s": 0.297,
545
+ "finish_reason": "stop",
546
+ "content": "hermes-tool-test",
547
+ "tool_calls": [],
548
+ "tool_name": null,
549
+ "parsed_args": {},
550
+ "text_tool_leak": false,
551
+ "usage": {
552
+ "completion_tokens": 7,
553
+ "prompt_tokens": 3957,
554
+ "total_tokens": 3964,
555
+ "prompt_tokens_details": {
556
+ "cached_tokens": 3410
557
+ }
558
+ }
559
+ },
560
+ {
561
+ "name": "a_final_file",
562
+ "suite": "suite_a",
563
+ "category": "finalization",
564
+ "passed": true,
565
+ "failure": null,
566
+ "elapsed_s": 0.269,
567
+ "finish_reason": "stop",
568
+ "content": "marker: fixed-schema",
569
+ "tool_calls": [],
570
+ "tool_name": null,
571
+ "parsed_args": {},
572
+ "text_tool_leak": false,
573
+ "usage": {
574
+ "completion_tokens": 5,
575
+ "prompt_tokens": 3963,
576
+ "total_tokens": 3968,
577
+ "prompt_tokens_details": {
578
+ "cached_tokens": 3410
579
+ }
580
+ }
581
+ },
582
+ {
583
+ "name": "b_weather_plain",
584
+ "suite": "suite_b",
585
+ "category": "browser",
586
+ "passed": true,
587
+ "failure": null,
588
+ "elapsed_s": 0.359,
589
+ "finish_reason": "tool_calls",
590
+ "content": "",
591
+ "tool_calls": [
592
+ {
593
+ "type": "function",
594
+ "function": {
595
+ "name": "browser_navigate",
596
+ "arguments": "{\"url\":\"https://www.google.com/search?q=current+Austin+TX+weather\"}"
597
+ },
598
+ "id": "KezaBE4x0tRLmNGFThyr3o0D3fIZdDQo"
599
+ }
600
+ ],
601
+ "tool_name": "browser_navigate",
602
+ "parsed_args": {
603
+ "url": "https://www.google.com/search?q=current+Austin+TX+weather"
604
+ },
605
+ "text_tool_leak": false,
606
+ "usage": {
607
+ "completion_tokens": 29,
608
+ "prompt_tokens": 3920,
609
+ "total_tokens": 3949,
610
+ "prompt_tokens_details": {
611
+ "cached_tokens": 3404
612
+ }
613
+ }
614
+ },
615
+ {
616
+ "name": "b_web_search",
617
+ "suite": "suite_b",
618
+ "category": "browser",
619
+ "passed": true,
620
+ "failure": null,
621
+ "elapsed_s": 0.389,
622
+ "finish_reason": "tool_calls",
623
+ "content": "",
624
+ "tool_calls": [
625
+ {
626
+ "type": "function",
627
+ "function": {
628
+ "name": "browser_navigate",
629
+ "arguments": "{\"url\":\"https://www.google.com/search?q=Liquid+AI+LFM2.5+context+length\"}"
630
+ },
631
+ "id": "tl4plLuV2rjqDAZmsxNcrn6Cf83tq3LZ"
632
+ }
633
+ ],
634
+ "tool_name": "browser_navigate",
635
+ "parsed_args": {
636
+ "url": "https://www.google.com/search?q=Liquid+AI+LFM2.5+context+length"
637
+ },
638
+ "text_tool_leak": false,
639
+ "usage": {
640
+ "completion_tokens": 34,
641
+ "prompt_tokens": 3924,
642
+ "total_tokens": 3958,
643
+ "prompt_tokens_details": {
644
+ "cached_tokens": 3404
645
+ }
646
+ }
647
+ },
648
+ {
649
+ "name": "b_terminal_uname",
650
+ "suite": "suite_b",
651
+ "category": "terminal",
652
+ "passed": true,
653
+ "failure": null,
654
+ "elapsed_s": 0.268,
655
+ "finish_reason": "tool_calls",
656
+ "content": "",
657
+ "tool_calls": [
658
+ {
659
+ "type": "function",
660
+ "function": {
661
+ "name": "terminal",
662
+ "arguments": "{\"command\":\"uname -m\"}"
663
+ },
664
+ "id": "pahjHCbPmS8b8AmKlpzP5Lmpw7qJLUdF"
665
+ }
666
+ ],
667
+ "tool_name": "terminal",
668
+ "parsed_args": {
669
+ "command": "uname -m"
670
+ },
671
+ "text_tool_leak": false,
672
+ "usage": {
673
+ "completion_tokens": 13,
674
+ "prompt_tokens": 3920,
675
+ "total_tokens": 3933,
676
+ "prompt_tokens_details": {
677
+ "cached_tokens": 3404
678
+ }
679
+ }
680
+ },
681
+ {
682
+ "name": "b_terminal_whoami",
683
+ "suite": "suite_b",
684
+ "category": "terminal",
685
+ "passed": true,
686
+ "failure": null,
687
+ "elapsed_s": 0.256,
688
+ "finish_reason": "tool_calls",
689
+ "content": "",
690
+ "tool_calls": [
691
+ {
692
+ "type": "function",
693
+ "function": {
694
+ "name": "terminal",
695
+ "arguments": "{\"command\":\"whoami\"}"
696
+ },
697
+ "id": "8Ovk1F4HyEs4G2ZWcZj06b7xMlMJufYE"
698
+ }
699
+ ],
700
+ "tool_name": "terminal",
701
+ "parsed_args": {
702
+ "command": "whoami"
703
+ },
704
+ "text_tool_leak": false,
705
+ "usage": {
706
+ "completion_tokens": 11,
707
+ "prompt_tokens": 3918,
708
+ "total_tokens": 3929,
709
+ "prompt_tokens_details": {
710
+ "cached_tokens": 3404
711
+ }
712
+ }
713
+ },
714
+ {
715
+ "name": "b_file_search_local",
716
+ "suite": "suite_b",
717
+ "category": "file",
718
+ "passed": true,
719
+ "failure": null,
720
+ "elapsed_s": 0.345,
721
+ "finish_reason": "tool_calls",
722
+ "content": "",
723
+ "tool_calls": [
724
+ {
725
+ "type": "function",
726
+ "function": {
727
+ "name": "search_files",
728
+ "arguments": "{\"pattern\":\"HERMES_PARSE_TEXT_TOOL_CALLS\",\"path\":\".\"}"
729
+ },
730
+ "id": "DTMoTCBBLCSqcWaPX9xHzcnovFcgTVTf"
731
+ }
732
+ ],
733
+ "tool_name": "search_files",
734
+ "parsed_args": {
735
+ "pattern": "HERMES_PARSE_TEXT_TOOL_CALLS",
736
+ "path": "."
737
+ },
738
+ "text_tool_leak": false,
739
+ "usage": {
740
+ "completion_tokens": 24,
741
+ "prompt_tokens": 3927,
742
+ "total_tokens": 3951,
743
+ "prompt_tokens_details": {
744
+ "cached_tokens": 3404
745
+ }
746
+ }
747
+ },
748
+ {
749
+ "name": "b_file_write",
750
+ "suite": "suite_b",
751
+ "category": "file",
752
+ "passed": true,
753
+ "failure": null,
754
+ "elapsed_s": 0.351,
755
+ "finish_reason": "tool_calls",
756
+ "content": "",
757
+ "tool_calls": [
758
+ {
759
+ "type": "function",
760
+ "function": {
761
+ "name": "write_file",
762
+ "arguments": "{\"path\":\"/tmp/hermes_fixed_schema_probe.txt\",\"content\":\"fixed schema\"}"
763
+ },
764
+ "id": "PzwJVRMmfrD5S41DfWzqoAT0qTBpKKCy"
765
+ }
766
+ ],
767
+ "tool_name": "write_file",
768
+ "parsed_args": {
769
+ "path": "/tmp/hermes_fixed_schema_probe.txt",
770
+ "content": "fixed schema"
771
+ },
772
+ "text_tool_leak": false,
773
+ "usage": {
774
+ "completion_tokens": 25,
775
+ "prompt_tokens": 3927,
776
+ "total_tokens": 3952,
777
+ "prompt_tokens_details": {
778
+ "cached_tokens": 3404
779
+ }
780
+ }
781
+ },
782
+ {
783
+ "name": "b_no_tool_command",
784
+ "suite": "suite_b",
785
+ "category": "no_tool",
786
+ "passed": true,
787
+ "failure": null,
788
+ "elapsed_s": 0.239,
789
+ "finish_reason": "stop",
790
+ "content": "The command is `pwd`.",
791
+ "tool_calls": [],
792
+ "tool_name": null,
793
+ "parsed_args": {},
794
+ "text_tool_leak": false,
795
+ "usage": {
796
+ "completion_tokens": 7,
797
+ "prompt_tokens": 3923,
798
+ "total_tokens": 3930,
799
+ "prompt_tokens_details": {
800
+ "cached_tokens": 3404
801
+ }
802
+ }
803
+ },
804
+ {
805
+ "name": "b_no_tool_browser",
806
+ "suite": "suite_b",
807
+ "category": "no_tool",
808
+ "passed": true,
809
+ "failure": null,
810
+ "elapsed_s": 0.267,
811
+ "finish_reason": "stop",
812
+ "content": "A browser is an application for navigating and interacting with web pages.",
813
+ "tool_calls": [],
814
+ "tool_name": null,
815
+ "parsed_args": {},
816
+ "text_tool_leak": false,
817
+ "usage": {
818
+ "completion_tokens": 14,
819
+ "prompt_tokens": 3920,
820
+ "total_tokens": 3934,
821
+ "prompt_tokens_details": {
822
+ "cached_tokens": 3404
823
+ }
824
+ }
825
+ },
826
+ {
827
+ "name": "h_weather_san_antonio",
828
+ "suite": "holdout",
829
+ "category": "browser",
830
+ "passed": true,
831
+ "failure": null,
832
+ "elapsed_s": 0.349,
833
+ "finish_reason": "tool_calls",
834
+ "content": "",
835
+ "tool_calls": [
836
+ {
837
+ "type": "function",
838
+ "function": {
839
+ "name": "browser_navigate",
840
+ "arguments": "{\"url\":\"https://www.google.com/search?q=San+Antonio+weather\"}"
841
+ },
842
+ "id": "xd6ZeTZes0vjMjmxt5ExLrjtOkNvc0XI"
843
+ }
844
+ ],
845
+ "tool_name": "browser_navigate",
846
+ "parsed_args": {
847
+ "url": "https://www.google.com/search?q=San+Antonio+weather"
848
+ },
849
+ "text_tool_leak": false,
850
+ "usage": {
851
+ "completion_tokens": 27,
852
+ "prompt_tokens": 3922,
853
+ "total_tokens": 3949,
854
+ "prompt_tokens_details": {
855
+ "cached_tokens": 3404
856
+ }
857
+ }
858
+ },
859
+ {
860
+ "name": "h_current_docs",
861
+ "suite": "holdout",
862
+ "category": "browser",
863
+ "passed": true,
864
+ "failure": null,
865
+ "elapsed_s": 0.406,
866
+ "finish_reason": "tool_calls",
867
+ "content": "",
868
+ "tool_calls": [
869
+ {
870
+ "type": "function",
871
+ "function": {
872
+ "name": "browser_navigate",
873
+ "arguments": "{\"url\":\"https://www.google.com/search?q=current+docs+mlx_lm+server+tool+calling\"}"
874
+ },
875
+ "id": "057hEWLDUMTKbhdNqeCJO7yZ6VRYyAX9"
876
+ }
877
+ ],
878
+ "tool_name": "browser_navigate",
879
+ "parsed_args": {
880
+ "url": "https://www.google.com/search?q=current+docs+mlx_lm+server+tool+calling"
881
+ },
882
+ "text_tool_leak": false,
883
+ "usage": {
884
+ "completion_tokens": 36,
885
+ "prompt_tokens": 3924,
886
+ "total_tokens": 3960,
887
+ "prompt_tokens_details": {
888
+ "cached_tokens": 3404
889
+ }
890
+ }
891
+ },
892
+ {
893
+ "name": "h_online_latest",
894
+ "suite": "holdout",
895
+ "category": "browser",
896
+ "passed": true,
897
+ "failure": null,
898
+ "elapsed_s": 0.433,
899
+ "finish_reason": "tool_calls",
900
+ "content": "",
901
+ "tool_calls": [
902
+ {
903
+ "type": "function",
904
+ "function": {
905
+ "name": "browser_navigate",
906
+ "arguments": "{\"url\":\"https://www.google.com/search?q=latest+Liquid+AI+LFM2.5+GGUF+info\"}"
907
+ },
908
+ "id": "xHBG3VkTofA5KvhikDqlBvXKXngHJcHS"
909
+ }
910
+ ],
911
+ "tool_name": "browser_navigate",
912
+ "parsed_args": {
913
+ "url": "https://www.google.com/search?q=latest+Liquid+AI+LFM2.5+GGUF+info"
914
+ },
915
+ "text_tool_leak": false,
916
+ "usage": {
917
+ "completion_tokens": 37,
918
+ "prompt_tokens": 3930,
919
+ "total_tokens": 3967,
920
+ "prompt_tokens_details": {
921
+ "cached_tokens": 3404
922
+ }
923
+ }
924
+ },
925
+ {
926
+ "name": "h_noaa",
927
+ "suite": "holdout",
928
+ "category": "browser",
929
+ "passed": true,
930
+ "failure": null,
931
+ "elapsed_s": 0.377,
932
+ "finish_reason": "tool_calls",
933
+ "content": "",
934
+ "tool_calls": [
935
+ {
936
+ "type": "function",
937
+ "function": {
938
+ "name": "browser_navigate",
939
+ "arguments": "{\"url\":\"https://www.google.com/search?q=NOAA+forecast+Austin+Texas\"}"
940
+ },
941
+ "id": "hfTJtJLQ6r2SoKZARGgsAA5Xeeobbiv4"
942
+ }
943
+ ],
944
+ "tool_name": "browser_navigate",
945
+ "parsed_args": {
946
+ "url": "https://www.google.com/search?q=NOAA+forecast+Austin+Texas"
947
+ },
948
+ "text_tool_leak": false,
949
+ "usage": {
950
+ "completion_tokens": 31,
951
+ "prompt_tokens": 3926,
952
+ "total_tokens": 3957,
953
+ "prompt_tokens_details": {
954
+ "cached_tokens": 3410
955
+ }
956
+ }
957
+ },
958
+ {
959
+ "name": "h_terminal_date",
960
+ "suite": "holdout",
961
+ "category": "terminal",
962
+ "passed": true,
963
+ "failure": null,
964
+ "elapsed_s": 0.255,
965
+ "finish_reason": "tool_calls",
966
+ "content": "",
967
+ "tool_calls": [
968
+ {
969
+ "type": "function",
970
+ "function": {
971
+ "name": "terminal",
972
+ "arguments": "{\"command\":\"date\"}"
973
+ },
974
+ "id": "MIUj7lXP00VaS0ohgHRx7E6xUs1uDgr3"
975
+ }
976
+ ],
977
+ "tool_name": "terminal",
978
+ "parsed_args": {
979
+ "command": "date"
980
+ },
981
+ "text_tool_leak": false,
982
+ "usage": {
983
+ "completion_tokens": 10,
984
+ "prompt_tokens": 3917,
985
+ "total_tokens": 3927,
986
+ "prompt_tokens_details": {
987
+ "cached_tokens": 3404
988
+ }
989
+ }
990
+ },
991
+ {
992
+ "name": "h_terminal_pwd_plain",
993
+ "suite": "holdout",
994
+ "category": "terminal",
995
+ "passed": true,
996
+ "failure": null,
997
+ "elapsed_s": 0.253,
998
+ "finish_reason": "tool_calls",
999
+ "content": "",
1000
+ "tool_calls": [
1001
+ {
1002
+ "type": "function",
1003
+ "function": {
1004
+ "name": "terminal",
1005
+ "arguments": "{\"command\":\"pwd\"}"
1006
+ },
1007
+ "id": "25u3PTTvd6CjDLnPfoZHebhtxbPTarzp"
1008
+ }
1009
+ ],
1010
+ "tool_name": "terminal",
1011
+ "parsed_args": {
1012
+ "command": "pwd"
1013
+ },
1014
+ "text_tool_leak": false,
1015
+ "usage": {
1016
+ "completion_tokens": 10,
1017
+ "prompt_tokens": 3919,
1018
+ "total_tokens": 3929,
1019
+ "prompt_tokens_details": {
1020
+ "cached_tokens": 3404
1021
+ }
1022
+ }
1023
+ },
1024
+ {
1025
+ "name": "h_terminal_echo",
1026
+ "suite": "holdout",
1027
+ "category": "terminal",
1028
+ "passed": true,
1029
+ "failure": null,
1030
+ "elapsed_s": 0.282,
1031
+ "finish_reason": "tool_calls",
1032
+ "content": "",
1033
+ "tool_calls": [
1034
+ {
1035
+ "type": "function",
1036
+ "function": {
1037
+ "name": "terminal",
1038
+ "arguments": "{\"command\":\"echo fixed-hermes\"}"
1039
+ },
1040
+ "id": "J4bIyvxrBHMaOimZ1Jm5MKOTNKgvAj2h"
1041
+ }
1042
+ ],
1043
+ "tool_name": "terminal",
1044
+ "parsed_args": {
1045
+ "command": "echo fixed-hermes"
1046
+ },
1047
+ "text_tool_leak": false,
1048
+ "usage": {
1049
+ "completion_tokens": 14,
1050
+ "prompt_tokens": 3921,
1051
+ "total_tokens": 3935,
1052
+ "prompt_tokens_details": {
1053
+ "cached_tokens": 3404
1054
+ }
1055
+ }
1056
+ },
1057
+ {
1058
+ "name": "h_terminal_files",
1059
+ "suite": "holdout",
1060
+ "category": "terminal",
1061
+ "passed": true,
1062
+ "failure": null,
1063
+ "elapsed_s": 0.254,
1064
+ "finish_reason": "tool_calls",
1065
+ "content": "",
1066
+ "tool_calls": [
1067
+ {
1068
+ "type": "function",
1069
+ "function": {
1070
+ "name": "terminal",
1071
+ "arguments": "{\"command\":\"ls\"}"
1072
+ },
1073
+ "id": "ymkU73xqYGrznLpF8lDFPJzrpaz8QAWo"
1074
+ }
1075
+ ],
1076
+ "tool_name": "terminal",
1077
+ "parsed_args": {
1078
+ "command": "ls"
1079
+ },
1080
+ "text_tool_leak": false,
1081
+ "usage": {
1082
+ "completion_tokens": 10,
1083
+ "prompt_tokens": 3919,
1084
+ "total_tokens": 3929,
1085
+ "prompt_tokens_details": {
1086
+ "cached_tokens": 3404
1087
+ }
1088
+ }
1089
+ },
1090
+ {
1091
+ "name": "h_read_absolute",
1092
+ "suite": "holdout",
1093
+ "category": "file",
1094
+ "passed": true,
1095
+ "failure": null,
1096
+ "elapsed_s": 0.316,
1097
+ "finish_reason": "tool_calls",
1098
+ "content": "",
1099
+ "tool_calls": [
1100
+ {
1101
+ "type": "function",
1102
+ "function": {
1103
+ "name": "read_file",
1104
+ "arguments": "{\"path\":\"/tmp/hermes_eval_marker.txt\"}"
1105
+ },
1106
+ "id": "IYoeYv96GqUZPlgljMl36bOp8MrVKxuE"
1107
+ }
1108
+ ],
1109
+ "tool_name": "read_file",
1110
+ "parsed_args": {
1111
+ "path": "/tmp/hermes_eval_marker.txt"
1112
+ },
1113
+ "text_tool_leak": false,
1114
+ "usage": {
1115
+ "completion_tokens": 19,
1116
+ "prompt_tokens": 3925,
1117
+ "total_tokens": 3944,
1118
+ "prompt_tokens_details": {
1119
+ "cached_tokens": 3404
1120
+ }
1121
+ }
1122
+ },
1123
+ {
1124
+ "name": "h_search_local",
1125
+ "suite": "holdout",
1126
+ "category": "file",
1127
+ "passed": true,
1128
+ "failure": null,
1129
+ "elapsed_s": 0.332,
1130
+ "finish_reason": "tool_calls",
1131
+ "content": "",
1132
+ "tool_calls": [
1133
+ {
1134
+ "type": "function",
1135
+ "function": {
1136
+ "name": "search_files",
1137
+ "arguments": "{\"pattern\":\"iter07_structured_tool_calls\",\"path\":\".\"}"
1138
+ },
1139
+ "id": "uUdjIte5RymwsUT2WJEoBzfOMAxeGOLl"
1140
+ }
1141
+ ],
1142
+ "tool_name": "search_files",
1143
+ "parsed_args": {
1144
+ "pattern": "iter07_structured_tool_calls",
1145
+ "path": "."
1146
+ },
1147
+ "text_tool_leak": false,
1148
+ "usage": {
1149
+ "completion_tokens": 22,
1150
+ "prompt_tokens": 3925,
1151
+ "total_tokens": 3947,
1152
+ "prompt_tokens_details": {
1153
+ "cached_tokens": 3404
1154
+ }
1155
+ }
1156
+ },
1157
+ {
1158
+ "name": "h_search_repo_not_web",
1159
+ "suite": "holdout",
1160
+ "category": "file",
1161
+ "passed": true,
1162
+ "failure": null,
1163
+ "elapsed_s": 0.289,
1164
+ "finish_reason": "tool_calls",
1165
+ "content": "",
1166
+ "tool_calls": [
1167
+ {
1168
+ "type": "function",
1169
+ "function": {
1170
+ "name": "search_files",
1171
+ "arguments": "{\"pattern\":\"browser_snapshot\",\"path\":\".\"}"
1172
+ },
1173
+ "id": "FQc2QlbmShxRSltfXzbNvAqzl1DF760g"
1174
+ }
1175
+ ],
1176
+ "tool_name": "search_files",
1177
+ "parsed_args": {
1178
+ "pattern": "browser_snapshot",
1179
+ "path": "."
1180
+ },
1181
+ "text_tool_leak": false,
1182
+ "usage": {
1183
+ "completion_tokens": 16,
1184
+ "prompt_tokens": 3922,
1185
+ "total_tokens": 3938,
1186
+ "prompt_tokens_details": {
1187
+ "cached_tokens": 3404
1188
+ }
1189
+ }
1190
+ },
1191
+ {
1192
+ "name": "h_write_absolute",
1193
+ "suite": "holdout",
1194
+ "category": "file",
1195
+ "passed": true,
1196
+ "failure": null,
1197
+ "elapsed_s": 0.343,
1198
+ "finish_reason": "tool_calls",
1199
+ "content": "",
1200
+ "tool_calls": [
1201
+ {
1202
+ "type": "function",
1203
+ "function": {
1204
+ "name": "write_file",
1205
+ "arguments": "{\"path\":\"/tmp/hermes_holdout.txt\",\"content\":\"holdout ok\"}"
1206
+ },
1207
+ "id": "OxpndOakCdnWbzIRJFfGgIul2Xee9bzU"
1208
+ }
1209
+ ],
1210
+ "tool_name": "write_file",
1211
+ "parsed_args": {
1212
+ "path": "/tmp/hermes_holdout.txt",
1213
+ "content": "holdout ok"
1214
+ },
1215
+ "text_tool_leak": false,
1216
+ "usage": {
1217
+ "completion_tokens": 24,
1218
+ "prompt_tokens": 3926,
1219
+ "total_tokens": 3950,
1220
+ "prompt_tokens_details": {
1221
+ "cached_tokens": 3404
1222
+ }
1223
+ }
1224
+ },
1225
+ {
1226
+ "name": "h_no_tool_hi",
1227
+ "suite": "holdout",
1228
+ "category": "no_tool",
1229
+ "passed": true,
1230
+ "failure": null,
1231
+ "elapsed_s": 0.206,
1232
+ "finish_reason": "stop",
1233
+ "content": "Hello!",
1234
+ "tool_calls": [],
1235
+ "tool_name": null,
1236
+ "parsed_args": {},
1237
+ "text_tool_leak": false,
1238
+ "usage": {
1239
+ "completion_tokens": 3,
1240
+ "prompt_tokens": 3914,
1241
+ "total_tokens": 3917,
1242
+ "prompt_tokens_details": {
1243
+ "cached_tokens": 3404
1244
+ }
1245
+ }
1246
+ },
1247
+ {
1248
+ "name": "h_no_tool_explain",
1249
+ "suite": "holdout",
1250
+ "category": "no_tool",
1251
+ "passed": true,
1252
+ "failure": null,
1253
+ "elapsed_s": 0.341,
1254
+ "finish_reason": "stop",
1255
+ "content": "A browser is an application for navigating and interacting with web pages, while a terminal is an application for running shell commands.",
1256
+ "tool_calls": [],
1257
+ "tool_name": null,
1258
+ "parsed_args": {},
1259
+ "text_tool_leak": false,
1260
+ "usage": {
1261
+ "completion_tokens": 25,
1262
+ "prompt_tokens": 3923,
1263
+ "total_tokens": 3948,
1264
+ "prompt_tokens_details": {
1265
+ "cached_tokens": 3404
1266
+ }
1267
+ }
1268
+ },
1269
+ {
1270
+ "name": "h_no_tool_no_run",
1271
+ "suite": "holdout",
1272
+ "category": "no_tool",
1273
+ "passed": true,
1274
+ "failure": null,
1275
+ "elapsed_s": 0.25,
1276
+ "finish_reason": "stop",
1277
+ "content": "The command is `whoami`.",
1278
+ "tool_calls": [],
1279
+ "tool_name": null,
1280
+ "parsed_args": {},
1281
+ "text_tool_leak": false,
1282
+ "usage": {
1283
+ "completion_tokens": 8,
1284
+ "prompt_tokens": 3923,
1285
+ "total_tokens": 3931,
1286
+ "prompt_tokens_details": {
1287
+ "cached_tokens": 3404
1288
+ }
1289
+ }
1290
+ },
1291
+ {
1292
+ "name": "h_no_tool_sentence",
1293
+ "suite": "holdout",
1294
+ "category": "no_tool",
1295
+ "passed": true,
1296
+ "failure": null,
1297
+ "elapsed_s": 0.235,
1298
+ "finish_reason": "stop",
1299
+ "content": "The file was opened.",
1300
+ "tool_calls": [],
1301
+ "tool_name": null,
1302
+ "parsed_args": {},
1303
+ "text_tool_leak": false,
1304
+ "usage": {
1305
+ "completion_tokens": 6,
1306
+ "prompt_tokens": 3919,
1307
+ "total_tokens": 3925,
1308
+ "prompt_tokens_details": {
1309
+ "cached_tokens": 3404
1310
+ }
1311
+ }
1312
+ },
1313
+ {
1314
+ "name": "h_final_file",
1315
+ "suite": "holdout",
1316
+ "category": "finalization",
1317
+ "passed": true,
1318
+ "failure": null,
1319
+ "elapsed_s": 0.299,
1320
+ "finish_reason": "stop",
1321
+ "content": "marker: holdout-fixed",
1322
+ "tool_calls": [],
1323
+ "tool_name": null,
1324
+ "parsed_args": {},
1325
+ "text_tool_leak": false,
1326
+ "usage": {
1327
+ "completion_tokens": 7,
1328
+ "prompt_tokens": 3967,
1329
+ "total_tokens": 3974,
1330
+ "prompt_tokens_details": {
1331
+ "cached_tokens": 3410
1332
+ }
1333
+ }
1334
+ },
1335
+ {
1336
+ "name": "h_final_terminal",
1337
+ "suite": "holdout",
1338
+ "category": "finalization",
1339
+ "passed": true,
1340
+ "failure": null,
1341
+ "elapsed_s": 0.302,
1342
+ "finish_reason": "stop",
1343
+ "content": "fixed-hermes",
1344
+ "tool_calls": [],
1345
+ "tool_name": null,
1346
+ "parsed_args": {},
1347
+ "text_tool_leak": false,
1348
+ "usage": {
1349
+ "completion_tokens": 5,
1350
+ "prompt_tokens": 3956,
1351
+ "total_tokens": 3961,
1352
+ "prompt_tokens_details": {
1353
+ "cached_tokens": 3410
1354
+ }
1355
+ }
1356
+ }
1357
+ ]
1358
+ }
evals/gguf_Q6_K_XL_APPROX_llamacpp_all_fixed_hermes.json ADDED
@@ -0,0 +1,1358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "endpoint": "http://127.0.0.1:8091/v1/chat/completions",
3
+ "model": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/quants/LFM-2.5-8B-1B-hermes-ft-Q6_K_XL_APPROX.gguf",
4
+ "adapter_path": null,
5
+ "tools_source": {
6
+ "hermes_repo": "/Users/jkooker/Documents/Codex/2026-05-28/get-this-new-model-up-and/release_work/hermes-agent-lfm-tool-parser",
7
+ "git_commit": "a68761f5d13a1ec43f09fa605c2f33576ea8899f",
8
+ "toolsets": [
9
+ "terminal_tools",
10
+ "file_tools",
11
+ "browser_tools"
12
+ ],
13
+ "filtered_names": null
14
+ },
15
+ "tools": [
16
+ "browser_back",
17
+ "browser_click",
18
+ "browser_console",
19
+ "browser_get_images",
20
+ "browser_navigate",
21
+ "browser_press",
22
+ "browser_scroll",
23
+ "browser_snapshot",
24
+ "browser_type",
25
+ "patch",
26
+ "read_file",
27
+ "search_files",
28
+ "terminal",
29
+ "write_file"
30
+ ],
31
+ "summary": {
32
+ "passed": 43,
33
+ "total": 43,
34
+ "overall_rate": 1.0,
35
+ "tool_cases": 28,
36
+ "structured_tool_cases_passed": 28,
37
+ "structured_tool_rate": 1.0,
38
+ "no_tool_cases": 10,
39
+ "no_tool_cases_passed": 10,
40
+ "false_positive_tool_rate": 0.0,
41
+ "content_text_tool_leaks": 0,
42
+ "finish_reason_tool_calls": 28,
43
+ "category_metrics": {
44
+ "browser": {
45
+ "passed": 9,
46
+ "total": 9,
47
+ "rate": 1.0
48
+ },
49
+ "file": {
50
+ "passed": 9,
51
+ "total": 9,
52
+ "rate": 1.0
53
+ },
54
+ "finalization": {
55
+ "passed": 5,
56
+ "total": 5,
57
+ "rate": 1.0
58
+ },
59
+ "no_tool": {
60
+ "passed": 10,
61
+ "total": 10,
62
+ "rate": 1.0
63
+ },
64
+ "terminal": {
65
+ "passed": 10,
66
+ "total": 10,
67
+ "rate": 1.0
68
+ }
69
+ },
70
+ "suite_metrics": {
71
+ "holdout": {
72
+ "passed": 18,
73
+ "total": 18,
74
+ "rate": 1.0
75
+ },
76
+ "suite_a": {
77
+ "passed": 17,
78
+ "total": 17,
79
+ "rate": 1.0
80
+ },
81
+ "suite_b": {
82
+ "passed": 8,
83
+ "total": 8,
84
+ "rate": 1.0
85
+ }
86
+ },
87
+ "acceptance": {
88
+ "structured_tool_rate_gte_0_95": true,
89
+ "false_positive_tool_rate_lte_0_05": true,
90
+ "zero_text_tool_leaks": true,
91
+ "all_suites_gte_0_95": true
92
+ },
93
+ "failures": {}
94
+ },
95
+ "results": [
96
+ {
97
+ "name": "a_weather_austin",
98
+ "suite": "suite_a",
99
+ "category": "browser",
100
+ "passed": true,
101
+ "failure": null,
102
+ "elapsed_s": 1.46,
103
+ "finish_reason": "tool_calls",
104
+ "content": "",
105
+ "tool_calls": [
106
+ {
107
+ "type": "function",
108
+ "function": {
109
+ "name": "browser_navigate",
110
+ "arguments": "{\"url\":\"https://www.google.com/search?q=Austin+TX+weather+today\"}"
111
+ },
112
+ "id": "C2wpLneIzTWIJtZnQqwSWRSCL1TQs2On"
113
+ }
114
+ ],
115
+ "tool_name": "browser_navigate",
116
+ "parsed_args": {
117
+ "url": "https://www.google.com/search?q=Austin+TX+weather+today"
118
+ },
119
+ "text_tool_leak": false,
120
+ "usage": {
121
+ "completion_tokens": 29,
122
+ "prompt_tokens": 3920,
123
+ "total_tokens": 3949,
124
+ "prompt_tokens_details": {
125
+ "cached_tokens": 0
126
+ }
127
+ }
128
+ },
129
+ {
130
+ "name": "a_latest_mlx",
131
+ "suite": "suite_a",
132
+ "category": "browser",
133
+ "passed": true,
134
+ "failure": null,
135
+ "elapsed_s": 0.375,
136
+ "finish_reason": "tool_calls",
137
+ "content": "",
138
+ "tool_calls": [
139
+ {
140
+ "type": "function",
141
+ "function": {
142
+ "name": "browser_navigate",
143
+ "arguments": "{\"url\":\"https://www.google.com/search?q=latest+mlx-lm+release+notes\"}"
144
+ },
145
+ "id": "xU2hj4CA6rd7CRML2tPtIcmN9BEv90oq"
146
+ }
147
+ ],
148
+ "tool_name": "browser_navigate",
149
+ "parsed_args": {
150
+ "url": "https://www.google.com/search?q=latest+mlx-lm+release+notes"
151
+ },
152
+ "text_tool_leak": false,
153
+ "usage": {
154
+ "completion_tokens": 31,
155
+ "prompt_tokens": 3923,
156
+ "total_tokens": 3954,
157
+ "prompt_tokens_details": {
158
+ "cached_tokens": 3404
159
+ }
160
+ }
161
+ },
162
+ {
163
+ "name": "a_noaa_forecast",
164
+ "suite": "suite_a",
165
+ "category": "browser",
166
+ "passed": true,
167
+ "failure": null,
168
+ "elapsed_s": 1.486,
169
+ "finish_reason": "tool_calls",
170
+ "content": "",
171
+ "tool_calls": [
172
+ {
173
+ "type": "function",
174
+ "function": {
175
+ "name": "browser_navigate",
176
+ "arguments": "{\"url\":\"https://www.google.com/search?q=NOAA+Austin+forecast\"}"
177
+ },
178
+ "id": "5nzxuxYk3O8eOdZbsVj9Lj06nLrxLdBi"
179
+ }
180
+ ],
181
+ "tool_name": "browser_navigate",
182
+ "parsed_args": {
183
+ "url": "https://www.google.com/search?q=NOAA+Austin+forecast"
184
+ },
185
+ "text_tool_leak": false,
186
+ "usage": {
187
+ "completion_tokens": 29,
188
+ "prompt_tokens": 3926,
189
+ "total_tokens": 3955,
190
+ "prompt_tokens_details": {
191
+ "cached_tokens": 0
192
+ }
193
+ }
194
+ },
195
+ {
196
+ "name": "a_echo",
197
+ "suite": "suite_a",
198
+ "category": "terminal",
199
+ "passed": true,
200
+ "failure": null,
201
+ "elapsed_s": 0.279,
202
+ "finish_reason": "tool_calls",
203
+ "content": "",
204
+ "tool_calls": [
205
+ {
206
+ "type": "function",
207
+ "function": {
208
+ "name": "terminal",
209
+ "arguments": "{\"command\":\"echo hermes-tool-test\"}"
210
+ },
211
+ "id": "a3Wr6CK32ieGb48iYSQX39IcKtABL3Sr"
212
+ }
213
+ ],
214
+ "tool_name": "terminal",
215
+ "parsed_args": {
216
+ "command": "echo hermes-tool-test"
217
+ },
218
+ "text_tool_leak": false,
219
+ "usage": {
220
+ "completion_tokens": 15,
221
+ "prompt_tokens": 3919,
222
+ "total_tokens": 3934,
223
+ "prompt_tokens_details": {
224
+ "cached_tokens": 3404
225
+ }
226
+ }
227
+ },
228
+ {
229
+ "name": "a_pwd",
230
+ "suite": "suite_a",
231
+ "category": "terminal",
232
+ "passed": true,
233
+ "failure": null,
234
+ "elapsed_s": 0.247,
235
+ "finish_reason": "tool_calls",
236
+ "content": "",
237
+ "tool_calls": [
238
+ {
239
+ "type": "function",
240
+ "function": {
241
+ "name": "terminal",
242
+ "arguments": "{\"command\":\"pwd\"}"
243
+ },
244
+ "id": "abxdh5xdNB3goppaLMrEHhrCx8aRA0ts"
245
+ }
246
+ ],
247
+ "tool_name": "terminal",
248
+ "parsed_args": {
249
+ "command": "pwd"
250
+ },
251
+ "text_tool_leak": false,
252
+ "usage": {
253
+ "completion_tokens": 10,
254
+ "prompt_tokens": 3915,
255
+ "total_tokens": 3925,
256
+ "prompt_tokens_details": {
257
+ "cached_tokens": 3404
258
+ }
259
+ }
260
+ },
261
+ {
262
+ "name": "a_ls",
263
+ "suite": "suite_a",
264
+ "category": "terminal",
265
+ "passed": true,
266
+ "failure": null,
267
+ "elapsed_s": 0.248,
268
+ "finish_reason": "tool_calls",
269
+ "content": "",
270
+ "tool_calls": [
271
+ {
272
+ "type": "function",
273
+ "function": {
274
+ "name": "terminal",
275
+ "arguments": "{\"command\":\"ls\"}"
276
+ },
277
+ "id": "AGDJKjFqfprJB4P8nhzb9fZaVQW2qEKd"
278
+ }
279
+ ],
280
+ "tool_name": "terminal",
281
+ "parsed_args": {
282
+ "command": "ls"
283
+ },
284
+ "text_tool_leak": false,
285
+ "usage": {
286
+ "completion_tokens": 10,
287
+ "prompt_tokens": 3917,
288
+ "total_tokens": 3927,
289
+ "prompt_tokens_details": {
290
+ "cached_tokens": 3404
291
+ }
292
+ }
293
+ },
294
+ {
295
+ "name": "a_python_version",
296
+ "suite": "suite_a",
297
+ "category": "terminal",
298
+ "passed": true,
299
+ "failure": null,
300
+ "elapsed_s": 0.268,
301
+ "finish_reason": "tool_calls",
302
+ "content": "",
303
+ "tool_calls": [
304
+ {
305
+ "type": "function",
306
+ "function": {
307
+ "name": "terminal",
308
+ "arguments": "{\"command\":\"python3 --version\"}"
309
+ },
310
+ "id": "czNcFjDCnHWAIblW71knNTAbHxHiLoNl"
311
+ }
312
+ ],
313
+ "tool_name": "terminal",
314
+ "parsed_args": {
315
+ "command": "python3 --version"
316
+ },
317
+ "text_tool_leak": false,
318
+ "usage": {
319
+ "completion_tokens": 13,
320
+ "prompt_tokens": 3925,
321
+ "total_tokens": 3938,
322
+ "prompt_tokens_details": {
323
+ "cached_tokens": 3410
324
+ }
325
+ }
326
+ },
327
+ {
328
+ "name": "a_read_file",
329
+ "suite": "suite_a",
330
+ "category": "file",
331
+ "passed": true,
332
+ "failure": null,
333
+ "elapsed_s": 0.31,
334
+ "finish_reason": "tool_calls",
335
+ "content": "",
336
+ "tool_calls": [
337
+ {
338
+ "type": "function",
339
+ "function": {
340
+ "name": "read_file",
341
+ "arguments": "{\"path\":\"/tmp/hermes_eval_marker.txt\"}"
342
+ },
343
+ "id": "YxyYliRvHffE00qYuthyS0tZZSAOUfnU"
344
+ }
345
+ ],
346
+ "tool_name": "read_file",
347
+ "parsed_args": {
348
+ "path": "/tmp/hermes_eval_marker.txt"
349
+ },
350
+ "text_tool_leak": false,
351
+ "usage": {
352
+ "completion_tokens": 19,
353
+ "prompt_tokens": 3923,
354
+ "total_tokens": 3942,
355
+ "prompt_tokens_details": {
356
+ "cached_tokens": 3404
357
+ }
358
+ }
359
+ },
360
+ {
361
+ "name": "a_search_repo",
362
+ "suite": "suite_a",
363
+ "category": "file",
364
+ "passed": true,
365
+ "failure": null,
366
+ "elapsed_s": 0.284,
367
+ "finish_reason": "tool_calls",
368
+ "content": "",
369
+ "tool_calls": [
370
+ {
371
+ "type": "function",
372
+ "function": {
373
+ "name": "search_files",
374
+ "arguments": "{\"pattern\":\"browser_navigate\",\"path\":\".\"}"
375
+ },
376
+ "id": "bfiWpEek8fLWMCa2uteRp1VpbW0fbhfC"
377
+ }
378
+ ],
379
+ "tool_name": "search_files",
380
+ "parsed_args": {
381
+ "pattern": "browser_navigate",
382
+ "path": "."
383
+ },
384
+ "text_tool_leak": false,
385
+ "usage": {
386
+ "completion_tokens": 17,
387
+ "prompt_tokens": 3920,
388
+ "total_tokens": 3937,
389
+ "prompt_tokens_details": {
390
+ "cached_tokens": 3404
391
+ }
392
+ }
393
+ },
394
+ {
395
+ "name": "a_write_file",
396
+ "suite": "suite_a",
397
+ "category": "file",
398
+ "passed": true,
399
+ "failure": null,
400
+ "elapsed_s": 0.335,
401
+ "finish_reason": "tool_calls",
402
+ "content": "",
403
+ "tool_calls": [
404
+ {
405
+ "type": "function",
406
+ "function": {
407
+ "name": "write_file",
408
+ "arguments": "{\"path\":\"/tmp/hermes_router_note.txt\",\"content\":\"hello\"}"
409
+ },
410
+ "id": "OHo0HxGu0ky3tR2vvfIXNDcmfoGVTYSA"
411
+ }
412
+ ],
413
+ "tool_name": "write_file",
414
+ "parsed_args": {
415
+ "path": "/tmp/hermes_router_note.txt",
416
+ "content": "hello"
417
+ },
418
+ "text_tool_leak": false,
419
+ "usage": {
420
+ "completion_tokens": 23,
421
+ "prompt_tokens": 3925,
422
+ "total_tokens": 3948,
423
+ "prompt_tokens_details": {
424
+ "cached_tokens": 3404
425
+ }
426
+ }
427
+ },
428
+ {
429
+ "name": "a_no_tool_greeting",
430
+ "suite": "suite_a",
431
+ "category": "no_tool",
432
+ "passed": true,
433
+ "failure": null,
434
+ "elapsed_s": 0.205,
435
+ "finish_reason": "stop",
436
+ "content": "Hello!",
437
+ "tool_calls": [],
438
+ "tool_name": null,
439
+ "parsed_args": {},
440
+ "text_tool_leak": false,
441
+ "usage": {
442
+ "completion_tokens": 3,
443
+ "prompt_tokens": 3914,
444
+ "total_tokens": 3917,
445
+ "prompt_tokens_details": {
446
+ "cached_tokens": 3404
447
+ }
448
+ }
449
+ },
450
+ {
451
+ "name": "a_no_tool_explain",
452
+ "suite": "suite_a",
453
+ "category": "no_tool",
454
+ "passed": true,
455
+ "failure": null,
456
+ "elapsed_s": 0.279,
457
+ "finish_reason": "stop",
458
+ "content": "A router chooses which expert networks should process each token.",
459
+ "tool_calls": [],
460
+ "tool_name": null,
461
+ "parsed_args": {},
462
+ "text_tool_leak": false,
463
+ "usage": {
464
+ "completion_tokens": 12,
465
+ "prompt_tokens": 3926,
466
+ "total_tokens": 3938,
467
+ "prompt_tokens_details": {
468
+ "cached_tokens": 3404
469
+ }
470
+ }
471
+ },
472
+ {
473
+ "name": "a_no_tool_do_not",
474
+ "suite": "suite_a",
475
+ "category": "no_tool",
476
+ "passed": true,
477
+ "failure": null,
478
+ "elapsed_s": 0.208,
479
+ "finish_reason": "stop",
480
+ "content": "done",
481
+ "tool_calls": [],
482
+ "tool_name": null,
483
+ "parsed_args": {},
484
+ "text_tool_leak": false,
485
+ "usage": {
486
+ "completion_tokens": 2,
487
+ "prompt_tokens": 3920,
488
+ "total_tokens": 3922,
489
+ "prompt_tokens_details": {
490
+ "cached_tokens": 3404
491
+ }
492
+ }
493
+ },
494
+ {
495
+ "name": "a_no_tool_word_browser",
496
+ "suite": "suite_a",
497
+ "category": "no_tool",
498
+ "passed": true,
499
+ "failure": null,
500
+ "elapsed_s": 0.242,
501
+ "finish_reason": "stop",
502
+ "content": "The browser opened a quiet page.",
503
+ "tool_calls": [],
504
+ "tool_name": null,
505
+ "parsed_args": {},
506
+ "text_tool_leak": false,
507
+ "usage": {
508
+ "completion_tokens": 8,
509
+ "prompt_tokens": 3919,
510
+ "total_tokens": 3927,
511
+ "prompt_tokens_details": {
512
+ "cached_tokens": 3404
513
+ }
514
+ }
515
+ },
516
+ {
517
+ "name": "a_final_browser",
518
+ "suite": "suite_a",
519
+ "category": "finalization",
520
+ "passed": true,
521
+ "failure": null,
522
+ "elapsed_s": 0.303,
523
+ "finish_reason": "stop",
524
+ "content": "Austin is 82 F and sunny.",
525
+ "tool_calls": [],
526
+ "tool_name": null,
527
+ "parsed_args": {},
528
+ "text_tool_leak": false,
529
+ "usage": {
530
+ "completion_tokens": 10,
531
+ "prompt_tokens": 3975,
532
+ "total_tokens": 3985,
533
+ "prompt_tokens_details": {
534
+ "cached_tokens": 3410
535
+ }
536
+ }
537
+ },
538
+ {
539
+ "name": "a_final_terminal",
540
+ "suite": "suite_a",
541
+ "category": "finalization",
542
+ "passed": true,
543
+ "failure": null,
544
+ "elapsed_s": 0.289,
545
+ "finish_reason": "stop",
546
+ "content": "hermes-tool-test",
547
+ "tool_calls": [],
548
+ "tool_name": null,
549
+ "parsed_args": {},
550
+ "text_tool_leak": false,
551
+ "usage": {
552
+ "completion_tokens": 7,
553
+ "prompt_tokens": 3957,
554
+ "total_tokens": 3964,
555
+ "prompt_tokens_details": {
556
+ "cached_tokens": 3410
557
+ }
558
+ }
559
+ },
560
+ {
561
+ "name": "a_final_file",
562
+ "suite": "suite_a",
563
+ "category": "finalization",
564
+ "passed": true,
565
+ "failure": null,
566
+ "elapsed_s": 0.268,
567
+ "finish_reason": "stop",
568
+ "content": "marker: fixed-schema",
569
+ "tool_calls": [],
570
+ "tool_name": null,
571
+ "parsed_args": {},
572
+ "text_tool_leak": false,
573
+ "usage": {
574
+ "completion_tokens": 5,
575
+ "prompt_tokens": 3963,
576
+ "total_tokens": 3968,
577
+ "prompt_tokens_details": {
578
+ "cached_tokens": 3410
579
+ }
580
+ }
581
+ },
582
+ {
583
+ "name": "b_weather_plain",
584
+ "suite": "suite_b",
585
+ "category": "browser",
586
+ "passed": true,
587
+ "failure": null,
588
+ "elapsed_s": 0.362,
589
+ "finish_reason": "tool_calls",
590
+ "content": "",
591
+ "tool_calls": [
592
+ {
593
+ "type": "function",
594
+ "function": {
595
+ "name": "browser_navigate",
596
+ "arguments": "{\"url\":\"https://www.google.com/search?q=current+Austin+TX+weather\"}"
597
+ },
598
+ "id": "PEWw7Q1ihiLqbpXcejd8QaNdqvrC8RMv"
599
+ }
600
+ ],
601
+ "tool_name": "browser_navigate",
602
+ "parsed_args": {
603
+ "url": "https://www.google.com/search?q=current+Austin+TX+weather"
604
+ },
605
+ "text_tool_leak": false,
606
+ "usage": {
607
+ "completion_tokens": 29,
608
+ "prompt_tokens": 3920,
609
+ "total_tokens": 3949,
610
+ "prompt_tokens_details": {
611
+ "cached_tokens": 3404
612
+ }
613
+ }
614
+ },
615
+ {
616
+ "name": "b_web_search",
617
+ "suite": "suite_b",
618
+ "category": "browser",
619
+ "passed": true,
620
+ "failure": null,
621
+ "elapsed_s": 0.396,
622
+ "finish_reason": "tool_calls",
623
+ "content": "",
624
+ "tool_calls": [
625
+ {
626
+ "type": "function",
627
+ "function": {
628
+ "name": "browser_navigate",
629
+ "arguments": "{\"url\":\"https://www.google.com/search?q=Liquid+AI+LFM2.5+context+length\"}"
630
+ },
631
+ "id": "s6L1Bv9FLYLoZygenNahB2nUx6YCLpXQ"
632
+ }
633
+ ],
634
+ "tool_name": "browser_navigate",
635
+ "parsed_args": {
636
+ "url": "https://www.google.com/search?q=Liquid+AI+LFM2.5+context+length"
637
+ },
638
+ "text_tool_leak": false,
639
+ "usage": {
640
+ "completion_tokens": 34,
641
+ "prompt_tokens": 3924,
642
+ "total_tokens": 3958,
643
+ "prompt_tokens_details": {
644
+ "cached_tokens": 3404
645
+ }
646
+ }
647
+ },
648
+ {
649
+ "name": "b_terminal_uname",
650
+ "suite": "suite_b",
651
+ "category": "terminal",
652
+ "passed": true,
653
+ "failure": null,
654
+ "elapsed_s": 0.271,
655
+ "finish_reason": "tool_calls",
656
+ "content": "",
657
+ "tool_calls": [
658
+ {
659
+ "type": "function",
660
+ "function": {
661
+ "name": "terminal",
662
+ "arguments": "{\"command\":\"uname -m\"}"
663
+ },
664
+ "id": "DdWXV4iCFhaCanU1B4lHqWWbe0xH4EvE"
665
+ }
666
+ ],
667
+ "tool_name": "terminal",
668
+ "parsed_args": {
669
+ "command": "uname -m"
670
+ },
671
+ "text_tool_leak": false,
672
+ "usage": {
673
+ "completion_tokens": 13,
674
+ "prompt_tokens": 3920,
675
+ "total_tokens": 3933,
676
+ "prompt_tokens_details": {
677
+ "cached_tokens": 3404
678
+ }
679
+ }
680
+ },
681
+ {
682
+ "name": "b_terminal_whoami",
683
+ "suite": "suite_b",
684
+ "category": "terminal",
685
+ "passed": true,
686
+ "failure": null,
687
+ "elapsed_s": 0.259,
688
+ "finish_reason": "tool_calls",
689
+ "content": "",
690
+ "tool_calls": [
691
+ {
692
+ "type": "function",
693
+ "function": {
694
+ "name": "terminal",
695
+ "arguments": "{\"command\":\"whoami\"}"
696
+ },
697
+ "id": "C7gpsoQcEMyebjWkmeJopHWy0P7dcp4q"
698
+ }
699
+ ],
700
+ "tool_name": "terminal",
701
+ "parsed_args": {
702
+ "command": "whoami"
703
+ },
704
+ "text_tool_leak": false,
705
+ "usage": {
706
+ "completion_tokens": 11,
707
+ "prompt_tokens": 3918,
708
+ "total_tokens": 3929,
709
+ "prompt_tokens_details": {
710
+ "cached_tokens": 3404
711
+ }
712
+ }
713
+ },
714
+ {
715
+ "name": "b_file_search_local",
716
+ "suite": "suite_b",
717
+ "category": "file",
718
+ "passed": true,
719
+ "failure": null,
720
+ "elapsed_s": 0.35,
721
+ "finish_reason": "tool_calls",
722
+ "content": "",
723
+ "tool_calls": [
724
+ {
725
+ "type": "function",
726
+ "function": {
727
+ "name": "search_files",
728
+ "arguments": "{\"pattern\":\"HERMES_PARSE_TEXT_TOOL_CALLS\",\"path\":\".\"}"
729
+ },
730
+ "id": "nVljY7AKvbCBG9QCOlb4WA0QsvA64f7b"
731
+ }
732
+ ],
733
+ "tool_name": "search_files",
734
+ "parsed_args": {
735
+ "pattern": "HERMES_PARSE_TEXT_TOOL_CALLS",
736
+ "path": "."
737
+ },
738
+ "text_tool_leak": false,
739
+ "usage": {
740
+ "completion_tokens": 24,
741
+ "prompt_tokens": 3927,
742
+ "total_tokens": 3951,
743
+ "prompt_tokens_details": {
744
+ "cached_tokens": 3404
745
+ }
746
+ }
747
+ },
748
+ {
749
+ "name": "b_file_write",
750
+ "suite": "suite_b",
751
+ "category": "file",
752
+ "passed": true,
753
+ "failure": null,
754
+ "elapsed_s": 0.355,
755
+ "finish_reason": "tool_calls",
756
+ "content": "",
757
+ "tool_calls": [
758
+ {
759
+ "type": "function",
760
+ "function": {
761
+ "name": "write_file",
762
+ "arguments": "{\"path\":\"/tmp/hermes_fixed_schema_probe.txt\",\"content\":\"fixed schema\"}"
763
+ },
764
+ "id": "r9XjrcDRttiLiTAZ3wu3RJux0gCk1XWi"
765
+ }
766
+ ],
767
+ "tool_name": "write_file",
768
+ "parsed_args": {
769
+ "path": "/tmp/hermes_fixed_schema_probe.txt",
770
+ "content": "fixed schema"
771
+ },
772
+ "text_tool_leak": false,
773
+ "usage": {
774
+ "completion_tokens": 25,
775
+ "prompt_tokens": 3927,
776
+ "total_tokens": 3952,
777
+ "prompt_tokens_details": {
778
+ "cached_tokens": 3404
779
+ }
780
+ }
781
+ },
782
+ {
783
+ "name": "b_no_tool_command",
784
+ "suite": "suite_b",
785
+ "category": "no_tool",
786
+ "passed": true,
787
+ "failure": null,
788
+ "elapsed_s": 0.241,
789
+ "finish_reason": "stop",
790
+ "content": "The command is `pwd`.",
791
+ "tool_calls": [],
792
+ "tool_name": null,
793
+ "parsed_args": {},
794
+ "text_tool_leak": false,
795
+ "usage": {
796
+ "completion_tokens": 7,
797
+ "prompt_tokens": 3923,
798
+ "total_tokens": 3930,
799
+ "prompt_tokens_details": {
800
+ "cached_tokens": 3404
801
+ }
802
+ }
803
+ },
804
+ {
805
+ "name": "b_no_tool_browser",
806
+ "suite": "suite_b",
807
+ "category": "no_tool",
808
+ "passed": true,
809
+ "failure": null,
810
+ "elapsed_s": 0.276,
811
+ "finish_reason": "stop",
812
+ "content": "A browser is an application for navigating and interacting with web pages.",
813
+ "tool_calls": [],
814
+ "tool_name": null,
815
+ "parsed_args": {},
816
+ "text_tool_leak": false,
817
+ "usage": {
818
+ "completion_tokens": 14,
819
+ "prompt_tokens": 3920,
820
+ "total_tokens": 3934,
821
+ "prompt_tokens_details": {
822
+ "cached_tokens": 3404
823
+ }
824
+ }
825
+ },
826
+ {
827
+ "name": "h_weather_san_antonio",
828
+ "suite": "holdout",
829
+ "category": "browser",
830
+ "passed": true,
831
+ "failure": null,
832
+ "elapsed_s": 0.365,
833
+ "finish_reason": "tool_calls",
834
+ "content": "",
835
+ "tool_calls": [
836
+ {
837
+ "type": "function",
838
+ "function": {
839
+ "name": "browser_navigate",
840
+ "arguments": "{\"url\":\"https://www.google.com/search?q=San+Antonio+weather\"}"
841
+ },
842
+ "id": "9Ff8OBgyvpETPq2HCdPju84s3C7kW2mC"
843
+ }
844
+ ],
845
+ "tool_name": "browser_navigate",
846
+ "parsed_args": {
847
+ "url": "https://www.google.com/search?q=San+Antonio+weather"
848
+ },
849
+ "text_tool_leak": false,
850
+ "usage": {
851
+ "completion_tokens": 27,
852
+ "prompt_tokens": 3922,
853
+ "total_tokens": 3949,
854
+ "prompt_tokens_details": {
855
+ "cached_tokens": 3404
856
+ }
857
+ }
858
+ },
859
+ {
860
+ "name": "h_current_docs",
861
+ "suite": "holdout",
862
+ "category": "browser",
863
+ "passed": true,
864
+ "failure": null,
865
+ "elapsed_s": 0.42,
866
+ "finish_reason": "tool_calls",
867
+ "content": "",
868
+ "tool_calls": [
869
+ {
870
+ "type": "function",
871
+ "function": {
872
+ "name": "browser_navigate",
873
+ "arguments": "{\"url\":\"https://www.google.com/search?q=current+docs+mlx_lm+server+tool+calling\"}"
874
+ },
875
+ "id": "DbPGJS2xyfLA7FS0iIPj95rMHmcqsx7H"
876
+ }
877
+ ],
878
+ "tool_name": "browser_navigate",
879
+ "parsed_args": {
880
+ "url": "https://www.google.com/search?q=current+docs+mlx_lm+server+tool+calling"
881
+ },
882
+ "text_tool_leak": false,
883
+ "usage": {
884
+ "completion_tokens": 36,
885
+ "prompt_tokens": 3924,
886
+ "total_tokens": 3960,
887
+ "prompt_tokens_details": {
888
+ "cached_tokens": 3404
889
+ }
890
+ }
891
+ },
892
+ {
893
+ "name": "h_online_latest",
894
+ "suite": "holdout",
895
+ "category": "browser",
896
+ "passed": true,
897
+ "failure": null,
898
+ "elapsed_s": 0.42,
899
+ "finish_reason": "tool_calls",
900
+ "content": "",
901
+ "tool_calls": [
902
+ {
903
+ "type": "function",
904
+ "function": {
905
+ "name": "browser_navigate",
906
+ "arguments": "{\"url\":\"https://www.google.com/search?q=latest+Liquid+AI+LFM2.5+GUF+info\"}"
907
+ },
908
+ "id": "4nAK7dfbHjRkuweBvvUW3FnM1W4XqG66"
909
+ }
910
+ ],
911
+ "tool_name": "browser_navigate",
912
+ "parsed_args": {
913
+ "url": "https://www.google.com/search?q=latest+Liquid+AI+LFM2.5+GUF+info"
914
+ },
915
+ "text_tool_leak": false,
916
+ "usage": {
917
+ "completion_tokens": 36,
918
+ "prompt_tokens": 3930,
919
+ "total_tokens": 3966,
920
+ "prompt_tokens_details": {
921
+ "cached_tokens": 3404
922
+ }
923
+ }
924
+ },
925
+ {
926
+ "name": "h_noaa",
927
+ "suite": "holdout",
928
+ "category": "browser",
929
+ "passed": true,
930
+ "failure": null,
931
+ "elapsed_s": 0.374,
932
+ "finish_reason": "tool_calls",
933
+ "content": "",
934
+ "tool_calls": [
935
+ {
936
+ "type": "function",
937
+ "function": {
938
+ "name": "browser_navigate",
939
+ "arguments": "{\"url\":\"https://www.google.com/search?q=NOAA+forecast+Austin+Texas\"}"
940
+ },
941
+ "id": "jME037N2nGnwKm6u9IXhz7AxUFD3Kaiv"
942
+ }
943
+ ],
944
+ "tool_name": "browser_navigate",
945
+ "parsed_args": {
946
+ "url": "https://www.google.com/search?q=NOAA+forecast+Austin+Texas"
947
+ },
948
+ "text_tool_leak": false,
949
+ "usage": {
950
+ "completion_tokens": 31,
951
+ "prompt_tokens": 3926,
952
+ "total_tokens": 3957,
953
+ "prompt_tokens_details": {
954
+ "cached_tokens": 3410
955
+ }
956
+ }
957
+ },
958
+ {
959
+ "name": "h_terminal_date",
960
+ "suite": "holdout",
961
+ "category": "terminal",
962
+ "passed": true,
963
+ "failure": null,
964
+ "elapsed_s": 0.259,
965
+ "finish_reason": "tool_calls",
966
+ "content": "",
967
+ "tool_calls": [
968
+ {
969
+ "type": "function",
970
+ "function": {
971
+ "name": "terminal",
972
+ "arguments": "{\"command\":\"date\"}"
973
+ },
974
+ "id": "YwsJbswKvnk3tHZxXrihv6NLrLurdJde"
975
+ }
976
+ ],
977
+ "tool_name": "terminal",
978
+ "parsed_args": {
979
+ "command": "date"
980
+ },
981
+ "text_tool_leak": false,
982
+ "usage": {
983
+ "completion_tokens": 10,
984
+ "prompt_tokens": 3917,
985
+ "total_tokens": 3927,
986
+ "prompt_tokens_details": {
987
+ "cached_tokens": 3404
988
+ }
989
+ }
990
+ },
991
+ {
992
+ "name": "h_terminal_pwd_plain",
993
+ "suite": "holdout",
994
+ "category": "terminal",
995
+ "passed": true,
996
+ "failure": null,
997
+ "elapsed_s": 0.257,
998
+ "finish_reason": "tool_calls",
999
+ "content": "",
1000
+ "tool_calls": [
1001
+ {
1002
+ "type": "function",
1003
+ "function": {
1004
+ "name": "terminal",
1005
+ "arguments": "{\"command\":\"pwd\"}"
1006
+ },
1007
+ "id": "ntp26hZLemYDSWgYE5WBdIh2t7GBDzkg"
1008
+ }
1009
+ ],
1010
+ "tool_name": "terminal",
1011
+ "parsed_args": {
1012
+ "command": "pwd"
1013
+ },
1014
+ "text_tool_leak": false,
1015
+ "usage": {
1016
+ "completion_tokens": 10,
1017
+ "prompt_tokens": 3919,
1018
+ "total_tokens": 3929,
1019
+ "prompt_tokens_details": {
1020
+ "cached_tokens": 3404
1021
+ }
1022
+ }
1023
+ },
1024
+ {
1025
+ "name": "h_terminal_echo",
1026
+ "suite": "holdout",
1027
+ "category": "terminal",
1028
+ "passed": true,
1029
+ "failure": null,
1030
+ "elapsed_s": 0.284,
1031
+ "finish_reason": "tool_calls",
1032
+ "content": "",
1033
+ "tool_calls": [
1034
+ {
1035
+ "type": "function",
1036
+ "function": {
1037
+ "name": "terminal",
1038
+ "arguments": "{\"command\":\"echo fixed-hermes\"}"
1039
+ },
1040
+ "id": "nQYqfDu5AFgGT0tgLAsMFuPfYTvNmBvF"
1041
+ }
1042
+ ],
1043
+ "tool_name": "terminal",
1044
+ "parsed_args": {
1045
+ "command": "echo fixed-hermes"
1046
+ },
1047
+ "text_tool_leak": false,
1048
+ "usage": {
1049
+ "completion_tokens": 14,
1050
+ "prompt_tokens": 3921,
1051
+ "total_tokens": 3935,
1052
+ "prompt_tokens_details": {
1053
+ "cached_tokens": 3404
1054
+ }
1055
+ }
1056
+ },
1057
+ {
1058
+ "name": "h_terminal_files",
1059
+ "suite": "holdout",
1060
+ "category": "terminal",
1061
+ "passed": true,
1062
+ "failure": null,
1063
+ "elapsed_s": 0.257,
1064
+ "finish_reason": "tool_calls",
1065
+ "content": "",
1066
+ "tool_calls": [
1067
+ {
1068
+ "type": "function",
1069
+ "function": {
1070
+ "name": "terminal",
1071
+ "arguments": "{\"command\":\"ls\"}"
1072
+ },
1073
+ "id": "fQa8NnvUi7reU3MjzkWzXBVajMwwhp4X"
1074
+ }
1075
+ ],
1076
+ "tool_name": "terminal",
1077
+ "parsed_args": {
1078
+ "command": "ls"
1079
+ },
1080
+ "text_tool_leak": false,
1081
+ "usage": {
1082
+ "completion_tokens": 10,
1083
+ "prompt_tokens": 3919,
1084
+ "total_tokens": 3929,
1085
+ "prompt_tokens_details": {
1086
+ "cached_tokens": 3404
1087
+ }
1088
+ }
1089
+ },
1090
+ {
1091
+ "name": "h_read_absolute",
1092
+ "suite": "holdout",
1093
+ "category": "file",
1094
+ "passed": true,
1095
+ "failure": null,
1096
+ "elapsed_s": 0.32,
1097
+ "finish_reason": "tool_calls",
1098
+ "content": "",
1099
+ "tool_calls": [
1100
+ {
1101
+ "type": "function",
1102
+ "function": {
1103
+ "name": "read_file",
1104
+ "arguments": "{\"path\":\"/tmp/hermes_eval_marker.txt\"}"
1105
+ },
1106
+ "id": "cBhOCQhgL8f56DnKNlkcE8LBKJz19eXD"
1107
+ }
1108
+ ],
1109
+ "tool_name": "read_file",
1110
+ "parsed_args": {
1111
+ "path": "/tmp/hermes_eval_marker.txt"
1112
+ },
1113
+ "text_tool_leak": false,
1114
+ "usage": {
1115
+ "completion_tokens": 19,
1116
+ "prompt_tokens": 3925,
1117
+ "total_tokens": 3944,
1118
+ "prompt_tokens_details": {
1119
+ "cached_tokens": 3404
1120
+ }
1121
+ }
1122
+ },
1123
+ {
1124
+ "name": "h_search_local",
1125
+ "suite": "holdout",
1126
+ "category": "file",
1127
+ "passed": true,
1128
+ "failure": null,
1129
+ "elapsed_s": 0.336,
1130
+ "finish_reason": "tool_calls",
1131
+ "content": "",
1132
+ "tool_calls": [
1133
+ {
1134
+ "type": "function",
1135
+ "function": {
1136
+ "name": "search_files",
1137
+ "arguments": "{\"pattern\":\"iter07_structured_tool_calls\",\"path\":\".\"}"
1138
+ },
1139
+ "id": "WjE7beyWxv0gNkPfoAGsvu19S3Dn0iuB"
1140
+ }
1141
+ ],
1142
+ "tool_name": "search_files",
1143
+ "parsed_args": {
1144
+ "pattern": "iter07_structured_tool_calls",
1145
+ "path": "."
1146
+ },
1147
+ "text_tool_leak": false,
1148
+ "usage": {
1149
+ "completion_tokens": 22,
1150
+ "prompt_tokens": 3925,
1151
+ "total_tokens": 3947,
1152
+ "prompt_tokens_details": {
1153
+ "cached_tokens": 3404
1154
+ }
1155
+ }
1156
+ },
1157
+ {
1158
+ "name": "h_search_repo_not_web",
1159
+ "suite": "holdout",
1160
+ "category": "file",
1161
+ "passed": true,
1162
+ "failure": null,
1163
+ "elapsed_s": 0.301,
1164
+ "finish_reason": "tool_calls",
1165
+ "content": "",
1166
+ "tool_calls": [
1167
+ {
1168
+ "type": "function",
1169
+ "function": {
1170
+ "name": "search_files",
1171
+ "arguments": "{\"pattern\":\"browser_snapshot\",\"path\":\".\"}"
1172
+ },
1173
+ "id": "MuRrB52nKdIN1VU92hwDZdmD3o6rEgrc"
1174
+ }
1175
+ ],
1176
+ "tool_name": "search_files",
1177
+ "parsed_args": {
1178
+ "pattern": "browser_snapshot",
1179
+ "path": "."
1180
+ },
1181
+ "text_tool_leak": false,
1182
+ "usage": {
1183
+ "completion_tokens": 16,
1184
+ "prompt_tokens": 3922,
1185
+ "total_tokens": 3938,
1186
+ "prompt_tokens_details": {
1187
+ "cached_tokens": 3404
1188
+ }
1189
+ }
1190
+ },
1191
+ {
1192
+ "name": "h_write_absolute",
1193
+ "suite": "holdout",
1194
+ "category": "file",
1195
+ "passed": true,
1196
+ "failure": null,
1197
+ "elapsed_s": 0.354,
1198
+ "finish_reason": "tool_calls",
1199
+ "content": "",
1200
+ "tool_calls": [
1201
+ {
1202
+ "type": "function",
1203
+ "function": {
1204
+ "name": "write_file",
1205
+ "arguments": "{\"path\":\"/tmp/hermes_holdout.txt\",\"content\":\"holdout ok\"}"
1206
+ },
1207
+ "id": "nMDFLNAfmAgZk0OAinKO0FpknLV3sifF"
1208
+ }
1209
+ ],
1210
+ "tool_name": "write_file",
1211
+ "parsed_args": {
1212
+ "path": "/tmp/hermes_holdout.txt",
1213
+ "content": "holdout ok"
1214
+ },
1215
+ "text_tool_leak": false,
1216
+ "usage": {
1217
+ "completion_tokens": 24,
1218
+ "prompt_tokens": 3926,
1219
+ "total_tokens": 3950,
1220
+ "prompt_tokens_details": {
1221
+ "cached_tokens": 3404
1222
+ }
1223
+ }
1224
+ },
1225
+ {
1226
+ "name": "h_no_tool_hi",
1227
+ "suite": "holdout",
1228
+ "category": "no_tool",
1229
+ "passed": true,
1230
+ "failure": null,
1231
+ "elapsed_s": 0.218,
1232
+ "finish_reason": "stop",
1233
+ "content": "Hello!",
1234
+ "tool_calls": [],
1235
+ "tool_name": null,
1236
+ "parsed_args": {},
1237
+ "text_tool_leak": false,
1238
+ "usage": {
1239
+ "completion_tokens": 3,
1240
+ "prompt_tokens": 3914,
1241
+ "total_tokens": 3917,
1242
+ "prompt_tokens_details": {
1243
+ "cached_tokens": 3404
1244
+ }
1245
+ }
1246
+ },
1247
+ {
1248
+ "name": "h_no_tool_explain",
1249
+ "suite": "holdout",
1250
+ "category": "no_tool",
1251
+ "passed": true,
1252
+ "failure": null,
1253
+ "elapsed_s": 0.359,
1254
+ "finish_reason": "stop",
1255
+ "content": "A browser is an application for navigating and interacting with web pages, while a terminal is an application for running shell commands.",
1256
+ "tool_calls": [],
1257
+ "tool_name": null,
1258
+ "parsed_args": {},
1259
+ "text_tool_leak": false,
1260
+ "usage": {
1261
+ "completion_tokens": 25,
1262
+ "prompt_tokens": 3923,
1263
+ "total_tokens": 3948,
1264
+ "prompt_tokens_details": {
1265
+ "cached_tokens": 3404
1266
+ }
1267
+ }
1268
+ },
1269
+ {
1270
+ "name": "h_no_tool_no_run",
1271
+ "suite": "holdout",
1272
+ "category": "no_tool",
1273
+ "passed": true,
1274
+ "failure": null,
1275
+ "elapsed_s": 0.258,
1276
+ "finish_reason": "stop",
1277
+ "content": "The command is `whoami`.",
1278
+ "tool_calls": [],
1279
+ "tool_name": null,
1280
+ "parsed_args": {},
1281
+ "text_tool_leak": false,
1282
+ "usage": {
1283
+ "completion_tokens": 8,
1284
+ "prompt_tokens": 3923,
1285
+ "total_tokens": 3931,
1286
+ "prompt_tokens_details": {
1287
+ "cached_tokens": 3404
1288
+ }
1289
+ }
1290
+ },
1291
+ {
1292
+ "name": "h_no_tool_sentence",
1293
+ "suite": "holdout",
1294
+ "category": "no_tool",
1295
+ "passed": true,
1296
+ "failure": null,
1297
+ "elapsed_s": 0.233,
1298
+ "finish_reason": "stop",
1299
+ "content": "The file was found.",
1300
+ "tool_calls": [],
1301
+ "tool_name": null,
1302
+ "parsed_args": {},
1303
+ "text_tool_leak": false,
1304
+ "usage": {
1305
+ "completion_tokens": 6,
1306
+ "prompt_tokens": 3919,
1307
+ "total_tokens": 3925,
1308
+ "prompt_tokens_details": {
1309
+ "cached_tokens": 3404
1310
+ }
1311
+ }
1312
+ },
1313
+ {
1314
+ "name": "h_final_file",
1315
+ "suite": "holdout",
1316
+ "category": "finalization",
1317
+ "passed": true,
1318
+ "failure": null,
1319
+ "elapsed_s": 0.293,
1320
+ "finish_reason": "stop",
1321
+ "content": "marker: holdout-fixed",
1322
+ "tool_calls": [],
1323
+ "tool_name": null,
1324
+ "parsed_args": {},
1325
+ "text_tool_leak": false,
1326
+ "usage": {
1327
+ "completion_tokens": 7,
1328
+ "prompt_tokens": 3967,
1329
+ "total_tokens": 3974,
1330
+ "prompt_tokens_details": {
1331
+ "cached_tokens": 3410
1332
+ }
1333
+ }
1334
+ },
1335
+ {
1336
+ "name": "h_final_terminal",
1337
+ "suite": "holdout",
1338
+ "category": "finalization",
1339
+ "passed": true,
1340
+ "failure": null,
1341
+ "elapsed_s": 0.285,
1342
+ "finish_reason": "stop",
1343
+ "content": "fixed-hermes",
1344
+ "tool_calls": [],
1345
+ "tool_name": null,
1346
+ "parsed_args": {},
1347
+ "text_tool_leak": false,
1348
+ "usage": {
1349
+ "completion_tokens": 5,
1350
+ "prompt_tokens": 3956,
1351
+ "total_tokens": 3961,
1352
+ "prompt_tokens_details": {
1353
+ "cached_tokens": 3410
1354
+ }
1355
+ }
1356
+ }
1357
+ ]
1358
+ }
evals/gguf_Q8_K_XL_APPROX_llamacpp_all_fixed_hermes.json ADDED
@@ -0,0 +1,1358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "endpoint": "http://127.0.0.1:8091/v1/chat/completions",
3
+ "model": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/quants/LFM-2.5-8B-1B-hermes-ft-Q8_K_XL_APPROX.gguf",
4
+ "adapter_path": null,
5
+ "tools_source": {
6
+ "hermes_repo": "/Users/jkooker/Documents/Codex/2026-05-28/get-this-new-model-up-and/release_work/hermes-agent-lfm-tool-parser",
7
+ "git_commit": "a68761f5d13a1ec43f09fa605c2f33576ea8899f",
8
+ "toolsets": [
9
+ "terminal_tools",
10
+ "file_tools",
11
+ "browser_tools"
12
+ ],
13
+ "filtered_names": null
14
+ },
15
+ "tools": [
16
+ "browser_back",
17
+ "browser_click",
18
+ "browser_console",
19
+ "browser_get_images",
20
+ "browser_navigate",
21
+ "browser_press",
22
+ "browser_scroll",
23
+ "browser_snapshot",
24
+ "browser_type",
25
+ "patch",
26
+ "read_file",
27
+ "search_files",
28
+ "terminal",
29
+ "write_file"
30
+ ],
31
+ "summary": {
32
+ "passed": 43,
33
+ "total": 43,
34
+ "overall_rate": 1.0,
35
+ "tool_cases": 28,
36
+ "structured_tool_cases_passed": 28,
37
+ "structured_tool_rate": 1.0,
38
+ "no_tool_cases": 10,
39
+ "no_tool_cases_passed": 10,
40
+ "false_positive_tool_rate": 0.0,
41
+ "content_text_tool_leaks": 0,
42
+ "finish_reason_tool_calls": 28,
43
+ "category_metrics": {
44
+ "browser": {
45
+ "passed": 9,
46
+ "total": 9,
47
+ "rate": 1.0
48
+ },
49
+ "file": {
50
+ "passed": 9,
51
+ "total": 9,
52
+ "rate": 1.0
53
+ },
54
+ "finalization": {
55
+ "passed": 5,
56
+ "total": 5,
57
+ "rate": 1.0
58
+ },
59
+ "no_tool": {
60
+ "passed": 10,
61
+ "total": 10,
62
+ "rate": 1.0
63
+ },
64
+ "terminal": {
65
+ "passed": 10,
66
+ "total": 10,
67
+ "rate": 1.0
68
+ }
69
+ },
70
+ "suite_metrics": {
71
+ "holdout": {
72
+ "passed": 18,
73
+ "total": 18,
74
+ "rate": 1.0
75
+ },
76
+ "suite_a": {
77
+ "passed": 17,
78
+ "total": 17,
79
+ "rate": 1.0
80
+ },
81
+ "suite_b": {
82
+ "passed": 8,
83
+ "total": 8,
84
+ "rate": 1.0
85
+ }
86
+ },
87
+ "acceptance": {
88
+ "structured_tool_rate_gte_0_95": true,
89
+ "false_positive_tool_rate_lte_0_05": true,
90
+ "zero_text_tool_leaks": true,
91
+ "all_suites_gte_0_95": true
92
+ },
93
+ "failures": {}
94
+ },
95
+ "results": [
96
+ {
97
+ "name": "a_weather_austin",
98
+ "suite": "suite_a",
99
+ "category": "browser",
100
+ "passed": true,
101
+ "failure": null,
102
+ "elapsed_s": 1.509,
103
+ "finish_reason": "tool_calls",
104
+ "content": "",
105
+ "tool_calls": [
106
+ {
107
+ "type": "function",
108
+ "function": {
109
+ "name": "browser_navigate",
110
+ "arguments": "{\"url\":\"https://www.google.com/search?q=Austin+TX+weather+today\"}"
111
+ },
112
+ "id": "wmEkhd24LwXyfu68NXC57PUrTlbfJKa7"
113
+ }
114
+ ],
115
+ "tool_name": "browser_navigate",
116
+ "parsed_args": {
117
+ "url": "https://www.google.com/search?q=Austin+TX+weather+today"
118
+ },
119
+ "text_tool_leak": false,
120
+ "usage": {
121
+ "completion_tokens": 29,
122
+ "prompt_tokens": 3920,
123
+ "total_tokens": 3949,
124
+ "prompt_tokens_details": {
125
+ "cached_tokens": 0
126
+ }
127
+ }
128
+ },
129
+ {
130
+ "name": "a_latest_mlx",
131
+ "suite": "suite_a",
132
+ "category": "browser",
133
+ "passed": true,
134
+ "failure": null,
135
+ "elapsed_s": 0.399,
136
+ "finish_reason": "tool_calls",
137
+ "content": "",
138
+ "tool_calls": [
139
+ {
140
+ "type": "function",
141
+ "function": {
142
+ "name": "browser_navigate",
143
+ "arguments": "{\"url\":\"https://www.google.com/search?q=latest+mlx-lm+release+notes\"}"
144
+ },
145
+ "id": "MiWKz5twwyikc6oFj2bMDfaXdNt3b15G"
146
+ }
147
+ ],
148
+ "tool_name": "browser_navigate",
149
+ "parsed_args": {
150
+ "url": "https://www.google.com/search?q=latest+mlx-lm+release+notes"
151
+ },
152
+ "text_tool_leak": false,
153
+ "usage": {
154
+ "completion_tokens": 31,
155
+ "prompt_tokens": 3923,
156
+ "total_tokens": 3954,
157
+ "prompt_tokens_details": {
158
+ "cached_tokens": 3404
159
+ }
160
+ }
161
+ },
162
+ {
163
+ "name": "a_noaa_forecast",
164
+ "suite": "suite_a",
165
+ "category": "browser",
166
+ "passed": true,
167
+ "failure": null,
168
+ "elapsed_s": 1.484,
169
+ "finish_reason": "tool_calls",
170
+ "content": "",
171
+ "tool_calls": [
172
+ {
173
+ "type": "function",
174
+ "function": {
175
+ "name": "browser_navigate",
176
+ "arguments": "{\"url\":\"https://www.google.com/search?q=NOAA+Austin+forecast\"}"
177
+ },
178
+ "id": "Ah1dpV65AXOafcZEVywNm97lhrnO617S"
179
+ }
180
+ ],
181
+ "tool_name": "browser_navigate",
182
+ "parsed_args": {
183
+ "url": "https://www.google.com/search?q=NOAA+Austin+forecast"
184
+ },
185
+ "text_tool_leak": false,
186
+ "usage": {
187
+ "completion_tokens": 29,
188
+ "prompt_tokens": 3926,
189
+ "total_tokens": 3955,
190
+ "prompt_tokens_details": {
191
+ "cached_tokens": 0
192
+ }
193
+ }
194
+ },
195
+ {
196
+ "name": "a_echo",
197
+ "suite": "suite_a",
198
+ "category": "terminal",
199
+ "passed": true,
200
+ "failure": null,
201
+ "elapsed_s": 0.289,
202
+ "finish_reason": "tool_calls",
203
+ "content": "",
204
+ "tool_calls": [
205
+ {
206
+ "type": "function",
207
+ "function": {
208
+ "name": "terminal",
209
+ "arguments": "{\"command\":\"echo hermes-tool-test\"}"
210
+ },
211
+ "id": "MOFC52jo9sKlqn2pdvay4sLNZXi5D372"
212
+ }
213
+ ],
214
+ "tool_name": "terminal",
215
+ "parsed_args": {
216
+ "command": "echo hermes-tool-test"
217
+ },
218
+ "text_tool_leak": false,
219
+ "usage": {
220
+ "completion_tokens": 15,
221
+ "prompt_tokens": 3919,
222
+ "total_tokens": 3934,
223
+ "prompt_tokens_details": {
224
+ "cached_tokens": 3404
225
+ }
226
+ }
227
+ },
228
+ {
229
+ "name": "a_pwd",
230
+ "suite": "suite_a",
231
+ "category": "terminal",
232
+ "passed": true,
233
+ "failure": null,
234
+ "elapsed_s": 0.249,
235
+ "finish_reason": "tool_calls",
236
+ "content": "",
237
+ "tool_calls": [
238
+ {
239
+ "type": "function",
240
+ "function": {
241
+ "name": "terminal",
242
+ "arguments": "{\"command\":\"pwd\"}"
243
+ },
244
+ "id": "UhLh7JtU3i19KOBsn2zVyH0mdK2uFp8i"
245
+ }
246
+ ],
247
+ "tool_name": "terminal",
248
+ "parsed_args": {
249
+ "command": "pwd"
250
+ },
251
+ "text_tool_leak": false,
252
+ "usage": {
253
+ "completion_tokens": 10,
254
+ "prompt_tokens": 3915,
255
+ "total_tokens": 3925,
256
+ "prompt_tokens_details": {
257
+ "cached_tokens": 3404
258
+ }
259
+ }
260
+ },
261
+ {
262
+ "name": "a_ls",
263
+ "suite": "suite_a",
264
+ "category": "terminal",
265
+ "passed": true,
266
+ "failure": null,
267
+ "elapsed_s": 0.248,
268
+ "finish_reason": "tool_calls",
269
+ "content": "",
270
+ "tool_calls": [
271
+ {
272
+ "type": "function",
273
+ "function": {
274
+ "name": "terminal",
275
+ "arguments": "{\"command\":\"ls\"}"
276
+ },
277
+ "id": "21sSobq5jHG9aXJCd0Rhtc2wVzrTj9Uh"
278
+ }
279
+ ],
280
+ "tool_name": "terminal",
281
+ "parsed_args": {
282
+ "command": "ls"
283
+ },
284
+ "text_tool_leak": false,
285
+ "usage": {
286
+ "completion_tokens": 10,
287
+ "prompt_tokens": 3917,
288
+ "total_tokens": 3927,
289
+ "prompt_tokens_details": {
290
+ "cached_tokens": 3404
291
+ }
292
+ }
293
+ },
294
+ {
295
+ "name": "a_python_version",
296
+ "suite": "suite_a",
297
+ "category": "terminal",
298
+ "passed": true,
299
+ "failure": null,
300
+ "elapsed_s": 0.27,
301
+ "finish_reason": "tool_calls",
302
+ "content": "",
303
+ "tool_calls": [
304
+ {
305
+ "type": "function",
306
+ "function": {
307
+ "name": "terminal",
308
+ "arguments": "{\"command\":\"python3 --version\"}"
309
+ },
310
+ "id": "R4jY7Zn6XfE8GBaTYsyY7adDVyP8j8qa"
311
+ }
312
+ ],
313
+ "tool_name": "terminal",
314
+ "parsed_args": {
315
+ "command": "python3 --version"
316
+ },
317
+ "text_tool_leak": false,
318
+ "usage": {
319
+ "completion_tokens": 13,
320
+ "prompt_tokens": 3925,
321
+ "total_tokens": 3938,
322
+ "prompt_tokens_details": {
323
+ "cached_tokens": 3410
324
+ }
325
+ }
326
+ },
327
+ {
328
+ "name": "a_read_file",
329
+ "suite": "suite_a",
330
+ "category": "file",
331
+ "passed": true,
332
+ "failure": null,
333
+ "elapsed_s": 0.32,
334
+ "finish_reason": "tool_calls",
335
+ "content": "",
336
+ "tool_calls": [
337
+ {
338
+ "type": "function",
339
+ "function": {
340
+ "name": "read_file",
341
+ "arguments": "{\"path\":\"/tmp/hermes_eval_marker.txt\"}"
342
+ },
343
+ "id": "1EY23EBZmexlL655J5XKDPVQolHlUetH"
344
+ }
345
+ ],
346
+ "tool_name": "read_file",
347
+ "parsed_args": {
348
+ "path": "/tmp/hermes_eval_marker.txt"
349
+ },
350
+ "text_tool_leak": false,
351
+ "usage": {
352
+ "completion_tokens": 19,
353
+ "prompt_tokens": 3923,
354
+ "total_tokens": 3942,
355
+ "prompt_tokens_details": {
356
+ "cached_tokens": 3404
357
+ }
358
+ }
359
+ },
360
+ {
361
+ "name": "a_search_repo",
362
+ "suite": "suite_a",
363
+ "category": "file",
364
+ "passed": true,
365
+ "failure": null,
366
+ "elapsed_s": 0.296,
367
+ "finish_reason": "tool_calls",
368
+ "content": "",
369
+ "tool_calls": [
370
+ {
371
+ "type": "function",
372
+ "function": {
373
+ "name": "search_files",
374
+ "arguments": "{\"pattern\":\"browser_navigate\",\"path\":\".\"}"
375
+ },
376
+ "id": "niJMIpsavYrajCE2sFacRnhEv0a8339Z"
377
+ }
378
+ ],
379
+ "tool_name": "search_files",
380
+ "parsed_args": {
381
+ "pattern": "browser_navigate",
382
+ "path": "."
383
+ },
384
+ "text_tool_leak": false,
385
+ "usage": {
386
+ "completion_tokens": 17,
387
+ "prompt_tokens": 3920,
388
+ "total_tokens": 3937,
389
+ "prompt_tokens_details": {
390
+ "cached_tokens": 3404
391
+ }
392
+ }
393
+ },
394
+ {
395
+ "name": "a_write_file",
396
+ "suite": "suite_a",
397
+ "category": "file",
398
+ "passed": true,
399
+ "failure": null,
400
+ "elapsed_s": 0.362,
401
+ "finish_reason": "tool_calls",
402
+ "content": "",
403
+ "tool_calls": [
404
+ {
405
+ "type": "function",
406
+ "function": {
407
+ "name": "write_file",
408
+ "arguments": "{\"path\":\"/tmp/hermes_router_note.txt\",\"content\":\"hello\"}"
409
+ },
410
+ "id": "Dhdv52fc0UgeBUDr1QS1jIuF3JUGpOaS"
411
+ }
412
+ ],
413
+ "tool_name": "write_file",
414
+ "parsed_args": {
415
+ "path": "/tmp/hermes_router_note.txt",
416
+ "content": "hello"
417
+ },
418
+ "text_tool_leak": false,
419
+ "usage": {
420
+ "completion_tokens": 23,
421
+ "prompt_tokens": 3925,
422
+ "total_tokens": 3948,
423
+ "prompt_tokens_details": {
424
+ "cached_tokens": 3404
425
+ }
426
+ }
427
+ },
428
+ {
429
+ "name": "a_no_tool_greeting",
430
+ "suite": "suite_a",
431
+ "category": "no_tool",
432
+ "passed": true,
433
+ "failure": null,
434
+ "elapsed_s": 0.199,
435
+ "finish_reason": "stop",
436
+ "content": "Hello!",
437
+ "tool_calls": [],
438
+ "tool_name": null,
439
+ "parsed_args": {},
440
+ "text_tool_leak": false,
441
+ "usage": {
442
+ "completion_tokens": 3,
443
+ "prompt_tokens": 3914,
444
+ "total_tokens": 3917,
445
+ "prompt_tokens_details": {
446
+ "cached_tokens": 3404
447
+ }
448
+ }
449
+ },
450
+ {
451
+ "name": "a_no_tool_explain",
452
+ "suite": "suite_a",
453
+ "category": "no_tool",
454
+ "passed": true,
455
+ "failure": null,
456
+ "elapsed_s": 0.275,
457
+ "finish_reason": "stop",
458
+ "content": "A router chooses which expert networks should process each token.",
459
+ "tool_calls": [],
460
+ "tool_name": null,
461
+ "parsed_args": {},
462
+ "text_tool_leak": false,
463
+ "usage": {
464
+ "completion_tokens": 12,
465
+ "prompt_tokens": 3926,
466
+ "total_tokens": 3938,
467
+ "prompt_tokens_details": {
468
+ "cached_tokens": 3404
469
+ }
470
+ }
471
+ },
472
+ {
473
+ "name": "a_no_tool_do_not",
474
+ "suite": "suite_a",
475
+ "category": "no_tool",
476
+ "passed": true,
477
+ "failure": null,
478
+ "elapsed_s": 0.196,
479
+ "finish_reason": "stop",
480
+ "content": "done",
481
+ "tool_calls": [],
482
+ "tool_name": null,
483
+ "parsed_args": {},
484
+ "text_tool_leak": false,
485
+ "usage": {
486
+ "completion_tokens": 2,
487
+ "prompt_tokens": 3920,
488
+ "total_tokens": 3922,
489
+ "prompt_tokens_details": {
490
+ "cached_tokens": 3404
491
+ }
492
+ }
493
+ },
494
+ {
495
+ "name": "a_no_tool_word_browser",
496
+ "suite": "suite_a",
497
+ "category": "no_tool",
498
+ "passed": true,
499
+ "failure": null,
500
+ "elapsed_s": 0.235,
501
+ "finish_reason": "stop",
502
+ "content": "The browser opened a quiet page.",
503
+ "tool_calls": [],
504
+ "tool_name": null,
505
+ "parsed_args": {},
506
+ "text_tool_leak": false,
507
+ "usage": {
508
+ "completion_tokens": 8,
509
+ "prompt_tokens": 3919,
510
+ "total_tokens": 3927,
511
+ "prompt_tokens_details": {
512
+ "cached_tokens": 3404
513
+ }
514
+ }
515
+ },
516
+ {
517
+ "name": "a_final_browser",
518
+ "suite": "suite_a",
519
+ "category": "finalization",
520
+ "passed": true,
521
+ "failure": null,
522
+ "elapsed_s": 0.297,
523
+ "finish_reason": "stop",
524
+ "content": "Austin is 82 F and sunny.",
525
+ "tool_calls": [],
526
+ "tool_name": null,
527
+ "parsed_args": {},
528
+ "text_tool_leak": false,
529
+ "usage": {
530
+ "completion_tokens": 10,
531
+ "prompt_tokens": 3975,
532
+ "total_tokens": 3985,
533
+ "prompt_tokens_details": {
534
+ "cached_tokens": 3410
535
+ }
536
+ }
537
+ },
538
+ {
539
+ "name": "a_final_terminal",
540
+ "suite": "suite_a",
541
+ "category": "finalization",
542
+ "passed": true,
543
+ "failure": null,
544
+ "elapsed_s": 0.296,
545
+ "finish_reason": "stop",
546
+ "content": "hermes-tool-test",
547
+ "tool_calls": [],
548
+ "tool_name": null,
549
+ "parsed_args": {},
550
+ "text_tool_leak": false,
551
+ "usage": {
552
+ "completion_tokens": 7,
553
+ "prompt_tokens": 3957,
554
+ "total_tokens": 3964,
555
+ "prompt_tokens_details": {
556
+ "cached_tokens": 3410
557
+ }
558
+ }
559
+ },
560
+ {
561
+ "name": "a_final_file",
562
+ "suite": "suite_a",
563
+ "category": "finalization",
564
+ "passed": true,
565
+ "failure": null,
566
+ "elapsed_s": 0.269,
567
+ "finish_reason": "stop",
568
+ "content": "marker: fixed-schema",
569
+ "tool_calls": [],
570
+ "tool_name": null,
571
+ "parsed_args": {},
572
+ "text_tool_leak": false,
573
+ "usage": {
574
+ "completion_tokens": 5,
575
+ "prompt_tokens": 3963,
576
+ "total_tokens": 3968,
577
+ "prompt_tokens_details": {
578
+ "cached_tokens": 3410
579
+ }
580
+ }
581
+ },
582
+ {
583
+ "name": "b_weather_plain",
584
+ "suite": "suite_b",
585
+ "category": "browser",
586
+ "passed": true,
587
+ "failure": null,
588
+ "elapsed_s": 0.388,
589
+ "finish_reason": "tool_calls",
590
+ "content": "",
591
+ "tool_calls": [
592
+ {
593
+ "type": "function",
594
+ "function": {
595
+ "name": "browser_navigate",
596
+ "arguments": "{\"url\":\"https://www.google.com/search?q=current+Austin+TX+weather\"}"
597
+ },
598
+ "id": "dNvUJ6xoWHNrXoEnMbJAofYR9oXzuE6y"
599
+ }
600
+ ],
601
+ "tool_name": "browser_navigate",
602
+ "parsed_args": {
603
+ "url": "https://www.google.com/search?q=current+Austin+TX+weather"
604
+ },
605
+ "text_tool_leak": false,
606
+ "usage": {
607
+ "completion_tokens": 29,
608
+ "prompt_tokens": 3920,
609
+ "total_tokens": 3949,
610
+ "prompt_tokens_details": {
611
+ "cached_tokens": 3404
612
+ }
613
+ }
614
+ },
615
+ {
616
+ "name": "b_web_search",
617
+ "suite": "suite_b",
618
+ "category": "browser",
619
+ "passed": true,
620
+ "failure": null,
621
+ "elapsed_s": 0.414,
622
+ "finish_reason": "tool_calls",
623
+ "content": "",
624
+ "tool_calls": [
625
+ {
626
+ "type": "function",
627
+ "function": {
628
+ "name": "browser_navigate",
629
+ "arguments": "{\"url\":\"https://www.google.com/search?q=Liquid+AI+LFM2.5+context+length\"}"
630
+ },
631
+ "id": "HcNZABwjPzzEb1uErWcrviEQyQixrTgu"
632
+ }
633
+ ],
634
+ "tool_name": "browser_navigate",
635
+ "parsed_args": {
636
+ "url": "https://www.google.com/search?q=Liquid+AI+LFM2.5+context+length"
637
+ },
638
+ "text_tool_leak": false,
639
+ "usage": {
640
+ "completion_tokens": 34,
641
+ "prompt_tokens": 3924,
642
+ "total_tokens": 3958,
643
+ "prompt_tokens_details": {
644
+ "cached_tokens": 3404
645
+ }
646
+ }
647
+ },
648
+ {
649
+ "name": "b_terminal_uname",
650
+ "suite": "suite_b",
651
+ "category": "terminal",
652
+ "passed": true,
653
+ "failure": null,
654
+ "elapsed_s": 0.272,
655
+ "finish_reason": "tool_calls",
656
+ "content": "",
657
+ "tool_calls": [
658
+ {
659
+ "type": "function",
660
+ "function": {
661
+ "name": "terminal",
662
+ "arguments": "{\"command\":\"uname -m\"}"
663
+ },
664
+ "id": "p1gOosW1IIhMYsn0C28s3C5HuQpUQnxA"
665
+ }
666
+ ],
667
+ "tool_name": "terminal",
668
+ "parsed_args": {
669
+ "command": "uname -m"
670
+ },
671
+ "text_tool_leak": false,
672
+ "usage": {
673
+ "completion_tokens": 13,
674
+ "prompt_tokens": 3920,
675
+ "total_tokens": 3933,
676
+ "prompt_tokens_details": {
677
+ "cached_tokens": 3404
678
+ }
679
+ }
680
+ },
681
+ {
682
+ "name": "b_terminal_whoami",
683
+ "suite": "suite_b",
684
+ "category": "terminal",
685
+ "passed": true,
686
+ "failure": null,
687
+ "elapsed_s": 0.259,
688
+ "finish_reason": "tool_calls",
689
+ "content": "",
690
+ "tool_calls": [
691
+ {
692
+ "type": "function",
693
+ "function": {
694
+ "name": "terminal",
695
+ "arguments": "{\"command\":\"whoami\"}"
696
+ },
697
+ "id": "JSdTVOY5MC0NaJ9KObExrjzIDOeLIANh"
698
+ }
699
+ ],
700
+ "tool_name": "terminal",
701
+ "parsed_args": {
702
+ "command": "whoami"
703
+ },
704
+ "text_tool_leak": false,
705
+ "usage": {
706
+ "completion_tokens": 11,
707
+ "prompt_tokens": 3918,
708
+ "total_tokens": 3929,
709
+ "prompt_tokens_details": {
710
+ "cached_tokens": 3404
711
+ }
712
+ }
713
+ },
714
+ {
715
+ "name": "b_file_search_local",
716
+ "suite": "suite_b",
717
+ "category": "file",
718
+ "passed": true,
719
+ "failure": null,
720
+ "elapsed_s": 0.359,
721
+ "finish_reason": "tool_calls",
722
+ "content": "",
723
+ "tool_calls": [
724
+ {
725
+ "type": "function",
726
+ "function": {
727
+ "name": "search_files",
728
+ "arguments": "{\"pattern\":\"HERMES_PARSE_TEXT_TOOL_CALLS\",\"path\":\".\"}"
729
+ },
730
+ "id": "6lq22E6yMuTcd9oWTui0CbNqsaJPz9qo"
731
+ }
732
+ ],
733
+ "tool_name": "search_files",
734
+ "parsed_args": {
735
+ "pattern": "HERMES_PARSE_TEXT_TOOL_CALLS",
736
+ "path": "."
737
+ },
738
+ "text_tool_leak": false,
739
+ "usage": {
740
+ "completion_tokens": 24,
741
+ "prompt_tokens": 3927,
742
+ "total_tokens": 3951,
743
+ "prompt_tokens_details": {
744
+ "cached_tokens": 3404
745
+ }
746
+ }
747
+ },
748
+ {
749
+ "name": "b_file_write",
750
+ "suite": "suite_b",
751
+ "category": "file",
752
+ "passed": true,
753
+ "failure": null,
754
+ "elapsed_s": 0.366,
755
+ "finish_reason": "tool_calls",
756
+ "content": "",
757
+ "tool_calls": [
758
+ {
759
+ "type": "function",
760
+ "function": {
761
+ "name": "write_file",
762
+ "arguments": "{\"path\":\"/tmp/hermes_fixed_schema_probe.txt\",\"content\":\"fixed schema\"}"
763
+ },
764
+ "id": "5aPTnHiA0oDKZkuAgAtVXN8iq1Bgc5TH"
765
+ }
766
+ ],
767
+ "tool_name": "write_file",
768
+ "parsed_args": {
769
+ "path": "/tmp/hermes_fixed_schema_probe.txt",
770
+ "content": "fixed schema"
771
+ },
772
+ "text_tool_leak": false,
773
+ "usage": {
774
+ "completion_tokens": 25,
775
+ "prompt_tokens": 3927,
776
+ "total_tokens": 3952,
777
+ "prompt_tokens_details": {
778
+ "cached_tokens": 3404
779
+ }
780
+ }
781
+ },
782
+ {
783
+ "name": "b_no_tool_command",
784
+ "suite": "suite_b",
785
+ "category": "no_tool",
786
+ "passed": true,
787
+ "failure": null,
788
+ "elapsed_s": 0.236,
789
+ "finish_reason": "stop",
790
+ "content": "The command is `pwd`.",
791
+ "tool_calls": [],
792
+ "tool_name": null,
793
+ "parsed_args": {},
794
+ "text_tool_leak": false,
795
+ "usage": {
796
+ "completion_tokens": 7,
797
+ "prompt_tokens": 3923,
798
+ "total_tokens": 3930,
799
+ "prompt_tokens_details": {
800
+ "cached_tokens": 3404
801
+ }
802
+ }
803
+ },
804
+ {
805
+ "name": "b_no_tool_browser",
806
+ "suite": "suite_b",
807
+ "category": "no_tool",
808
+ "passed": true,
809
+ "failure": null,
810
+ "elapsed_s": 0.274,
811
+ "finish_reason": "stop",
812
+ "content": "A browser is an application for navigating and interacting with web pages.",
813
+ "tool_calls": [],
814
+ "tool_name": null,
815
+ "parsed_args": {},
816
+ "text_tool_leak": false,
817
+ "usage": {
818
+ "completion_tokens": 14,
819
+ "prompt_tokens": 3920,
820
+ "total_tokens": 3934,
821
+ "prompt_tokens_details": {
822
+ "cached_tokens": 3404
823
+ }
824
+ }
825
+ },
826
+ {
827
+ "name": "h_weather_san_antonio",
828
+ "suite": "holdout",
829
+ "category": "browser",
830
+ "passed": true,
831
+ "failure": null,
832
+ "elapsed_s": 0.367,
833
+ "finish_reason": "tool_calls",
834
+ "content": "",
835
+ "tool_calls": [
836
+ {
837
+ "type": "function",
838
+ "function": {
839
+ "name": "browser_navigate",
840
+ "arguments": "{\"url\":\"https://www.google.com/search?q=San+Antonio+weather\"}"
841
+ },
842
+ "id": "SHXUgZPzf1s04XGkis0MSwqGiOpTKb3w"
843
+ }
844
+ ],
845
+ "tool_name": "browser_navigate",
846
+ "parsed_args": {
847
+ "url": "https://www.google.com/search?q=San+Antonio+weather"
848
+ },
849
+ "text_tool_leak": false,
850
+ "usage": {
851
+ "completion_tokens": 27,
852
+ "prompt_tokens": 3922,
853
+ "total_tokens": 3949,
854
+ "prompt_tokens_details": {
855
+ "cached_tokens": 3404
856
+ }
857
+ }
858
+ },
859
+ {
860
+ "name": "h_current_docs",
861
+ "suite": "holdout",
862
+ "category": "browser",
863
+ "passed": true,
864
+ "failure": null,
865
+ "elapsed_s": 0.429,
866
+ "finish_reason": "tool_calls",
867
+ "content": "",
868
+ "tool_calls": [
869
+ {
870
+ "type": "function",
871
+ "function": {
872
+ "name": "browser_navigate",
873
+ "arguments": "{\"url\":\"https://www.google.com/search?q=current+docs+mlx_lm+server+tool+calling\"}"
874
+ },
875
+ "id": "LyTlYEm128Zi31EG08bTpDGJqjwHoD02"
876
+ }
877
+ ],
878
+ "tool_name": "browser_navigate",
879
+ "parsed_args": {
880
+ "url": "https://www.google.com/search?q=current+docs+mlx_lm+server+tool+calling"
881
+ },
882
+ "text_tool_leak": false,
883
+ "usage": {
884
+ "completion_tokens": 36,
885
+ "prompt_tokens": 3924,
886
+ "total_tokens": 3960,
887
+ "prompt_tokens_details": {
888
+ "cached_tokens": 3404
889
+ }
890
+ }
891
+ },
892
+ {
893
+ "name": "h_online_latest",
894
+ "suite": "holdout",
895
+ "category": "browser",
896
+ "passed": true,
897
+ "failure": null,
898
+ "elapsed_s": 0.452,
899
+ "finish_reason": "tool_calls",
900
+ "content": "",
901
+ "tool_calls": [
902
+ {
903
+ "type": "function",
904
+ "function": {
905
+ "name": "browser_navigate",
906
+ "arguments": "{\"url\":\"https://www.google.com/search?q=latest+Liquid+AI+LFM2.5+GUF+info\"}"
907
+ },
908
+ "id": "LZbBwx3syRG3G7zxuVdVNVCGSbReYwSN"
909
+ }
910
+ ],
911
+ "tool_name": "browser_navigate",
912
+ "parsed_args": {
913
+ "url": "https://www.google.com/search?q=latest+Liquid+AI+LFM2.5+GUF+info"
914
+ },
915
+ "text_tool_leak": false,
916
+ "usage": {
917
+ "completion_tokens": 36,
918
+ "prompt_tokens": 3930,
919
+ "total_tokens": 3966,
920
+ "prompt_tokens_details": {
921
+ "cached_tokens": 3404
922
+ }
923
+ }
924
+ },
925
+ {
926
+ "name": "h_noaa",
927
+ "suite": "holdout",
928
+ "category": "browser",
929
+ "passed": true,
930
+ "failure": null,
931
+ "elapsed_s": 0.401,
932
+ "finish_reason": "tool_calls",
933
+ "content": "",
934
+ "tool_calls": [
935
+ {
936
+ "type": "function",
937
+ "function": {
938
+ "name": "browser_navigate",
939
+ "arguments": "{\"url\":\"https://www.google.com/search?q=NOAA+forecast+Austin+Texas\"}"
940
+ },
941
+ "id": "o67q37MqazsqxIaPwBYseuElB9pgREEY"
942
+ }
943
+ ],
944
+ "tool_name": "browser_navigate",
945
+ "parsed_args": {
946
+ "url": "https://www.google.com/search?q=NOAA+forecast+Austin+Texas"
947
+ },
948
+ "text_tool_leak": false,
949
+ "usage": {
950
+ "completion_tokens": 31,
951
+ "prompt_tokens": 3926,
952
+ "total_tokens": 3957,
953
+ "prompt_tokens_details": {
954
+ "cached_tokens": 3410
955
+ }
956
+ }
957
+ },
958
+ {
959
+ "name": "h_terminal_date",
960
+ "suite": "holdout",
961
+ "category": "terminal",
962
+ "passed": true,
963
+ "failure": null,
964
+ "elapsed_s": 0.261,
965
+ "finish_reason": "tool_calls",
966
+ "content": "",
967
+ "tool_calls": [
968
+ {
969
+ "type": "function",
970
+ "function": {
971
+ "name": "terminal",
972
+ "arguments": "{\"command\":\"date\"}"
973
+ },
974
+ "id": "Bz1TBI2DBKJg3aXUXIX2o0neDni8ANX6"
975
+ }
976
+ ],
977
+ "tool_name": "terminal",
978
+ "parsed_args": {
979
+ "command": "date"
980
+ },
981
+ "text_tool_leak": false,
982
+ "usage": {
983
+ "completion_tokens": 10,
984
+ "prompt_tokens": 3917,
985
+ "total_tokens": 3927,
986
+ "prompt_tokens_details": {
987
+ "cached_tokens": 3404
988
+ }
989
+ }
990
+ },
991
+ {
992
+ "name": "h_terminal_pwd_plain",
993
+ "suite": "holdout",
994
+ "category": "terminal",
995
+ "passed": true,
996
+ "failure": null,
997
+ "elapsed_s": 0.255,
998
+ "finish_reason": "tool_calls",
999
+ "content": "",
1000
+ "tool_calls": [
1001
+ {
1002
+ "type": "function",
1003
+ "function": {
1004
+ "name": "terminal",
1005
+ "arguments": "{\"command\":\"pwd\"}"
1006
+ },
1007
+ "id": "JVyw4NkrIvs8UBt5Fke4oLMmOZuOB0td"
1008
+ }
1009
+ ],
1010
+ "tool_name": "terminal",
1011
+ "parsed_args": {
1012
+ "command": "pwd"
1013
+ },
1014
+ "text_tool_leak": false,
1015
+ "usage": {
1016
+ "completion_tokens": 10,
1017
+ "prompt_tokens": 3919,
1018
+ "total_tokens": 3929,
1019
+ "prompt_tokens_details": {
1020
+ "cached_tokens": 3404
1021
+ }
1022
+ }
1023
+ },
1024
+ {
1025
+ "name": "h_terminal_echo",
1026
+ "suite": "holdout",
1027
+ "category": "terminal",
1028
+ "passed": true,
1029
+ "failure": null,
1030
+ "elapsed_s": 0.284,
1031
+ "finish_reason": "tool_calls",
1032
+ "content": "",
1033
+ "tool_calls": [
1034
+ {
1035
+ "type": "function",
1036
+ "function": {
1037
+ "name": "terminal",
1038
+ "arguments": "{\"command\":\"echo fixed-hermes\"}"
1039
+ },
1040
+ "id": "e5sfgCYkwUi53d9zwzydQOVWMPX7rWZt"
1041
+ }
1042
+ ],
1043
+ "tool_name": "terminal",
1044
+ "parsed_args": {
1045
+ "command": "echo fixed-hermes"
1046
+ },
1047
+ "text_tool_leak": false,
1048
+ "usage": {
1049
+ "completion_tokens": 14,
1050
+ "prompt_tokens": 3921,
1051
+ "total_tokens": 3935,
1052
+ "prompt_tokens_details": {
1053
+ "cached_tokens": 3404
1054
+ }
1055
+ }
1056
+ },
1057
+ {
1058
+ "name": "h_terminal_files",
1059
+ "suite": "holdout",
1060
+ "category": "terminal",
1061
+ "passed": true,
1062
+ "failure": null,
1063
+ "elapsed_s": 0.255,
1064
+ "finish_reason": "tool_calls",
1065
+ "content": "",
1066
+ "tool_calls": [
1067
+ {
1068
+ "type": "function",
1069
+ "function": {
1070
+ "name": "terminal",
1071
+ "arguments": "{\"command\":\"ls\"}"
1072
+ },
1073
+ "id": "xGrsaJEYKmqK1gVHj2moZW7WqiVP35kr"
1074
+ }
1075
+ ],
1076
+ "tool_name": "terminal",
1077
+ "parsed_args": {
1078
+ "command": "ls"
1079
+ },
1080
+ "text_tool_leak": false,
1081
+ "usage": {
1082
+ "completion_tokens": 10,
1083
+ "prompt_tokens": 3919,
1084
+ "total_tokens": 3929,
1085
+ "prompt_tokens_details": {
1086
+ "cached_tokens": 3404
1087
+ }
1088
+ }
1089
+ },
1090
+ {
1091
+ "name": "h_read_absolute",
1092
+ "suite": "holdout",
1093
+ "category": "file",
1094
+ "passed": true,
1095
+ "failure": null,
1096
+ "elapsed_s": 0.325,
1097
+ "finish_reason": "tool_calls",
1098
+ "content": "",
1099
+ "tool_calls": [
1100
+ {
1101
+ "type": "function",
1102
+ "function": {
1103
+ "name": "read_file",
1104
+ "arguments": "{\"path\":\"/tmp/hermes_eval_marker.txt\"}"
1105
+ },
1106
+ "id": "l6f4gj5YWCe9UJ2qh75zbslBykpav50I"
1107
+ }
1108
+ ],
1109
+ "tool_name": "read_file",
1110
+ "parsed_args": {
1111
+ "path": "/tmp/hermes_eval_marker.txt"
1112
+ },
1113
+ "text_tool_leak": false,
1114
+ "usage": {
1115
+ "completion_tokens": 19,
1116
+ "prompt_tokens": 3925,
1117
+ "total_tokens": 3944,
1118
+ "prompt_tokens_details": {
1119
+ "cached_tokens": 3404
1120
+ }
1121
+ }
1122
+ },
1123
+ {
1124
+ "name": "h_search_local",
1125
+ "suite": "holdout",
1126
+ "category": "file",
1127
+ "passed": true,
1128
+ "failure": null,
1129
+ "elapsed_s": 0.343,
1130
+ "finish_reason": "tool_calls",
1131
+ "content": "",
1132
+ "tool_calls": [
1133
+ {
1134
+ "type": "function",
1135
+ "function": {
1136
+ "name": "search_files",
1137
+ "arguments": "{\"pattern\":\"iter07_structured_tool_calls\",\"path\":\".\"}"
1138
+ },
1139
+ "id": "3JQtvwX3PBDEpyRWwJnYBm5HJycQrDzK"
1140
+ }
1141
+ ],
1142
+ "tool_name": "search_files",
1143
+ "parsed_args": {
1144
+ "pattern": "iter07_structured_tool_calls",
1145
+ "path": "."
1146
+ },
1147
+ "text_tool_leak": false,
1148
+ "usage": {
1149
+ "completion_tokens": 22,
1150
+ "prompt_tokens": 3925,
1151
+ "total_tokens": 3947,
1152
+ "prompt_tokens_details": {
1153
+ "cached_tokens": 3404
1154
+ }
1155
+ }
1156
+ },
1157
+ {
1158
+ "name": "h_search_repo_not_web",
1159
+ "suite": "holdout",
1160
+ "category": "file",
1161
+ "passed": true,
1162
+ "failure": null,
1163
+ "elapsed_s": 0.3,
1164
+ "finish_reason": "tool_calls",
1165
+ "content": "",
1166
+ "tool_calls": [
1167
+ {
1168
+ "type": "function",
1169
+ "function": {
1170
+ "name": "search_files",
1171
+ "arguments": "{\"pattern\":\"browser_snapshot\",\"path\":\".\"}"
1172
+ },
1173
+ "id": "mMisk2gf3P6HK0szXHcqhgOl8C9WkgNJ"
1174
+ }
1175
+ ],
1176
+ "tool_name": "search_files",
1177
+ "parsed_args": {
1178
+ "pattern": "browser_snapshot",
1179
+ "path": "."
1180
+ },
1181
+ "text_tool_leak": false,
1182
+ "usage": {
1183
+ "completion_tokens": 16,
1184
+ "prompt_tokens": 3922,
1185
+ "total_tokens": 3938,
1186
+ "prompt_tokens_details": {
1187
+ "cached_tokens": 3404
1188
+ }
1189
+ }
1190
+ },
1191
+ {
1192
+ "name": "h_write_absolute",
1193
+ "suite": "holdout",
1194
+ "category": "file",
1195
+ "passed": true,
1196
+ "failure": null,
1197
+ "elapsed_s": 0.359,
1198
+ "finish_reason": "tool_calls",
1199
+ "content": "",
1200
+ "tool_calls": [
1201
+ {
1202
+ "type": "function",
1203
+ "function": {
1204
+ "name": "write_file",
1205
+ "arguments": "{\"path\":\"/tmp/hermes_holdout.txt\",\"content\":\"holdout ok\"}"
1206
+ },
1207
+ "id": "JqrJ94ik2bbBZ95n8ejpO5rKuyNrX6qn"
1208
+ }
1209
+ ],
1210
+ "tool_name": "write_file",
1211
+ "parsed_args": {
1212
+ "path": "/tmp/hermes_holdout.txt",
1213
+ "content": "holdout ok"
1214
+ },
1215
+ "text_tool_leak": false,
1216
+ "usage": {
1217
+ "completion_tokens": 24,
1218
+ "prompt_tokens": 3926,
1219
+ "total_tokens": 3950,
1220
+ "prompt_tokens_details": {
1221
+ "cached_tokens": 3404
1222
+ }
1223
+ }
1224
+ },
1225
+ {
1226
+ "name": "h_no_tool_hi",
1227
+ "suite": "holdout",
1228
+ "category": "no_tool",
1229
+ "passed": true,
1230
+ "failure": null,
1231
+ "elapsed_s": 0.204,
1232
+ "finish_reason": "stop",
1233
+ "content": "Hello!",
1234
+ "tool_calls": [],
1235
+ "tool_name": null,
1236
+ "parsed_args": {},
1237
+ "text_tool_leak": false,
1238
+ "usage": {
1239
+ "completion_tokens": 3,
1240
+ "prompt_tokens": 3914,
1241
+ "total_tokens": 3917,
1242
+ "prompt_tokens_details": {
1243
+ "cached_tokens": 3404
1244
+ }
1245
+ }
1246
+ },
1247
+ {
1248
+ "name": "h_no_tool_explain",
1249
+ "suite": "holdout",
1250
+ "category": "no_tool",
1251
+ "passed": true,
1252
+ "failure": null,
1253
+ "elapsed_s": 0.356,
1254
+ "finish_reason": "stop",
1255
+ "content": "A browser is an application for navigating and interacting with web pages, while a terminal is an application for running shell commands.",
1256
+ "tool_calls": [],
1257
+ "tool_name": null,
1258
+ "parsed_args": {},
1259
+ "text_tool_leak": false,
1260
+ "usage": {
1261
+ "completion_tokens": 25,
1262
+ "prompt_tokens": 3923,
1263
+ "total_tokens": 3948,
1264
+ "prompt_tokens_details": {
1265
+ "cached_tokens": 3404
1266
+ }
1267
+ }
1268
+ },
1269
+ {
1270
+ "name": "h_no_tool_no_run",
1271
+ "suite": "holdout",
1272
+ "category": "no_tool",
1273
+ "passed": true,
1274
+ "failure": null,
1275
+ "elapsed_s": 0.246,
1276
+ "finish_reason": "stop",
1277
+ "content": "The command is `whoami`.",
1278
+ "tool_calls": [],
1279
+ "tool_name": null,
1280
+ "parsed_args": {},
1281
+ "text_tool_leak": false,
1282
+ "usage": {
1283
+ "completion_tokens": 8,
1284
+ "prompt_tokens": 3923,
1285
+ "total_tokens": 3931,
1286
+ "prompt_tokens_details": {
1287
+ "cached_tokens": 3404
1288
+ }
1289
+ }
1290
+ },
1291
+ {
1292
+ "name": "h_no_tool_sentence",
1293
+ "suite": "holdout",
1294
+ "category": "no_tool",
1295
+ "passed": true,
1296
+ "failure": null,
1297
+ "elapsed_s": 0.23,
1298
+ "finish_reason": "stop",
1299
+ "content": "The file was found.",
1300
+ "tool_calls": [],
1301
+ "tool_name": null,
1302
+ "parsed_args": {},
1303
+ "text_tool_leak": false,
1304
+ "usage": {
1305
+ "completion_tokens": 6,
1306
+ "prompt_tokens": 3919,
1307
+ "total_tokens": 3925,
1308
+ "prompt_tokens_details": {
1309
+ "cached_tokens": 3404
1310
+ }
1311
+ }
1312
+ },
1313
+ {
1314
+ "name": "h_final_file",
1315
+ "suite": "holdout",
1316
+ "category": "finalization",
1317
+ "passed": true,
1318
+ "failure": null,
1319
+ "elapsed_s": 0.291,
1320
+ "finish_reason": "stop",
1321
+ "content": "marker: holdout-fixed",
1322
+ "tool_calls": [],
1323
+ "tool_name": null,
1324
+ "parsed_args": {},
1325
+ "text_tool_leak": false,
1326
+ "usage": {
1327
+ "completion_tokens": 7,
1328
+ "prompt_tokens": 3967,
1329
+ "total_tokens": 3974,
1330
+ "prompt_tokens_details": {
1331
+ "cached_tokens": 3410
1332
+ }
1333
+ }
1334
+ },
1335
+ {
1336
+ "name": "h_final_terminal",
1337
+ "suite": "holdout",
1338
+ "category": "finalization",
1339
+ "passed": true,
1340
+ "failure": null,
1341
+ "elapsed_s": 0.288,
1342
+ "finish_reason": "stop",
1343
+ "content": "fixed-hermes",
1344
+ "tool_calls": [],
1345
+ "tool_name": null,
1346
+ "parsed_args": {},
1347
+ "text_tool_leak": false,
1348
+ "usage": {
1349
+ "completion_tokens": 5,
1350
+ "prompt_tokens": 3956,
1351
+ "total_tokens": 3961,
1352
+ "prompt_tokens_details": {
1353
+ "cached_tokens": 3410
1354
+ }
1355
+ }
1356
+ }
1357
+ ]
1358
+ }
evals/gguf_q4_xl_approx_llamacpp_all_fixed_hermes.json ADDED
@@ -0,0 +1,1358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "endpoint": "http://127.0.0.1:8091/v1/chat/completions",
3
+ "model": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/quants/LFM-2.5-8B-1B-hermes-ft-Q4_K_XL_APPROX.gguf",
4
+ "adapter_path": null,
5
+ "tools_source": {
6
+ "hermes_repo": "/Users/jkooker/Documents/Codex/2026-05-28/get-this-new-model-up-and/release_work/hermes-agent-lfm-tool-parser",
7
+ "git_commit": "a68761f5d13a1ec43f09fa605c2f33576ea8899f",
8
+ "toolsets": [
9
+ "terminal_tools",
10
+ "file_tools",
11
+ "browser_tools"
12
+ ],
13
+ "filtered_names": null
14
+ },
15
+ "tools": [
16
+ "browser_back",
17
+ "browser_click",
18
+ "browser_console",
19
+ "browser_get_images",
20
+ "browser_navigate",
21
+ "browser_press",
22
+ "browser_scroll",
23
+ "browser_snapshot",
24
+ "browser_type",
25
+ "patch",
26
+ "read_file",
27
+ "search_files",
28
+ "terminal",
29
+ "write_file"
30
+ ],
31
+ "summary": {
32
+ "passed": 43,
33
+ "total": 43,
34
+ "overall_rate": 1.0,
35
+ "tool_cases": 28,
36
+ "structured_tool_cases_passed": 28,
37
+ "structured_tool_rate": 1.0,
38
+ "no_tool_cases": 10,
39
+ "no_tool_cases_passed": 10,
40
+ "false_positive_tool_rate": 0.0,
41
+ "content_text_tool_leaks": 0,
42
+ "finish_reason_tool_calls": 28,
43
+ "category_metrics": {
44
+ "browser": {
45
+ "passed": 9,
46
+ "total": 9,
47
+ "rate": 1.0
48
+ },
49
+ "file": {
50
+ "passed": 9,
51
+ "total": 9,
52
+ "rate": 1.0
53
+ },
54
+ "finalization": {
55
+ "passed": 5,
56
+ "total": 5,
57
+ "rate": 1.0
58
+ },
59
+ "no_tool": {
60
+ "passed": 10,
61
+ "total": 10,
62
+ "rate": 1.0
63
+ },
64
+ "terminal": {
65
+ "passed": 10,
66
+ "total": 10,
67
+ "rate": 1.0
68
+ }
69
+ },
70
+ "suite_metrics": {
71
+ "holdout": {
72
+ "passed": 18,
73
+ "total": 18,
74
+ "rate": 1.0
75
+ },
76
+ "suite_a": {
77
+ "passed": 17,
78
+ "total": 17,
79
+ "rate": 1.0
80
+ },
81
+ "suite_b": {
82
+ "passed": 8,
83
+ "total": 8,
84
+ "rate": 1.0
85
+ }
86
+ },
87
+ "acceptance": {
88
+ "structured_tool_rate_gte_0_95": true,
89
+ "false_positive_tool_rate_lte_0_05": true,
90
+ "zero_text_tool_leaks": true,
91
+ "all_suites_gte_0_95": true
92
+ },
93
+ "failures": {}
94
+ },
95
+ "results": [
96
+ {
97
+ "name": "a_weather_austin",
98
+ "suite": "suite_a",
99
+ "category": "browser",
100
+ "passed": true,
101
+ "failure": null,
102
+ "elapsed_s": 1.573,
103
+ "finish_reason": "tool_calls",
104
+ "content": "",
105
+ "tool_calls": [
106
+ {
107
+ "type": "function",
108
+ "function": {
109
+ "name": "browser_navigate",
110
+ "arguments": "{\"url\":\"https://www.google.com/search?q=Austin+TX+weather+today\"}"
111
+ },
112
+ "id": "X26H98NLteYrO3x5gQnWlhU07ntbKa0T"
113
+ }
114
+ ],
115
+ "tool_name": "browser_navigate",
116
+ "parsed_args": {
117
+ "url": "https://www.google.com/search?q=Austin+TX+weather+today"
118
+ },
119
+ "text_tool_leak": false,
120
+ "usage": {
121
+ "completion_tokens": 29,
122
+ "prompt_tokens": 3920,
123
+ "total_tokens": 3949,
124
+ "prompt_tokens_details": {
125
+ "cached_tokens": 0
126
+ }
127
+ }
128
+ },
129
+ {
130
+ "name": "a_latest_mlx",
131
+ "suite": "suite_a",
132
+ "category": "browser",
133
+ "passed": true,
134
+ "failure": null,
135
+ "elapsed_s": 0.343,
136
+ "finish_reason": "tool_calls",
137
+ "content": "",
138
+ "tool_calls": [
139
+ {
140
+ "type": "function",
141
+ "function": {
142
+ "name": "browser_navigate",
143
+ "arguments": "{\"url\":\"https://www.google.com/search?q=latest+mlx-lm+release+notes\"}"
144
+ },
145
+ "id": "yeyW8R089Gcg4AuPtZf00KfMohokce4d"
146
+ }
147
+ ],
148
+ "tool_name": "browser_navigate",
149
+ "parsed_args": {
150
+ "url": "https://www.google.com/search?q=latest+mlx-lm+release+notes"
151
+ },
152
+ "text_tool_leak": false,
153
+ "usage": {
154
+ "completion_tokens": 31,
155
+ "prompt_tokens": 3923,
156
+ "total_tokens": 3954,
157
+ "prompt_tokens_details": {
158
+ "cached_tokens": 3404
159
+ }
160
+ }
161
+ },
162
+ {
163
+ "name": "a_noaa_forecast",
164
+ "suite": "suite_a",
165
+ "category": "browser",
166
+ "passed": true,
167
+ "failure": null,
168
+ "elapsed_s": 1.388,
169
+ "finish_reason": "tool_calls",
170
+ "content": "",
171
+ "tool_calls": [
172
+ {
173
+ "type": "function",
174
+ "function": {
175
+ "name": "browser_navigate",
176
+ "arguments": "{\"url\":\"https://www.google.com/search?q=NOAA+Austin+forecast\"}"
177
+ },
178
+ "id": "Ol0il6LbnL1EMhqijPWqJa46QNkIDMFi"
179
+ }
180
+ ],
181
+ "tool_name": "browser_navigate",
182
+ "parsed_args": {
183
+ "url": "https://www.google.com/search?q=NOAA+Austin+forecast"
184
+ },
185
+ "text_tool_leak": false,
186
+ "usage": {
187
+ "completion_tokens": 29,
188
+ "prompt_tokens": 3926,
189
+ "total_tokens": 3955,
190
+ "prompt_tokens_details": {
191
+ "cached_tokens": 0
192
+ }
193
+ }
194
+ },
195
+ {
196
+ "name": "a_echo",
197
+ "suite": "suite_a",
198
+ "category": "terminal",
199
+ "passed": true,
200
+ "failure": null,
201
+ "elapsed_s": 0.29,
202
+ "finish_reason": "tool_calls",
203
+ "content": "",
204
+ "tool_calls": [
205
+ {
206
+ "type": "function",
207
+ "function": {
208
+ "name": "terminal",
209
+ "arguments": "{\"command\":\"echo hermes-tool-test\"}"
210
+ },
211
+ "id": "OnTVZGs8fuTis1kBJupe8BYjh6qL0Amn"
212
+ }
213
+ ],
214
+ "tool_name": "terminal",
215
+ "parsed_args": {
216
+ "command": "echo hermes-tool-test"
217
+ },
218
+ "text_tool_leak": false,
219
+ "usage": {
220
+ "completion_tokens": 15,
221
+ "prompt_tokens": 3919,
222
+ "total_tokens": 3934,
223
+ "prompt_tokens_details": {
224
+ "cached_tokens": 3404
225
+ }
226
+ }
227
+ },
228
+ {
229
+ "name": "a_pwd",
230
+ "suite": "suite_a",
231
+ "category": "terminal",
232
+ "passed": true,
233
+ "failure": null,
234
+ "elapsed_s": 0.232,
235
+ "finish_reason": "tool_calls",
236
+ "content": "",
237
+ "tool_calls": [
238
+ {
239
+ "type": "function",
240
+ "function": {
241
+ "name": "terminal",
242
+ "arguments": "{\"command\":\"pwd\"}"
243
+ },
244
+ "id": "mJtaeHgbs1D7BsMnIGfAKWxQtg6y66nI"
245
+ }
246
+ ],
247
+ "tool_name": "terminal",
248
+ "parsed_args": {
249
+ "command": "pwd"
250
+ },
251
+ "text_tool_leak": false,
252
+ "usage": {
253
+ "completion_tokens": 10,
254
+ "prompt_tokens": 3915,
255
+ "total_tokens": 3925,
256
+ "prompt_tokens_details": {
257
+ "cached_tokens": 3404
258
+ }
259
+ }
260
+ },
261
+ {
262
+ "name": "a_ls",
263
+ "suite": "suite_a",
264
+ "category": "terminal",
265
+ "passed": true,
266
+ "failure": null,
267
+ "elapsed_s": 0.231,
268
+ "finish_reason": "tool_calls",
269
+ "content": "",
270
+ "tool_calls": [
271
+ {
272
+ "type": "function",
273
+ "function": {
274
+ "name": "terminal",
275
+ "arguments": "{\"command\":\"ls\"}"
276
+ },
277
+ "id": "H2zLSyKVCrN9gSYWTLaXM2MiKyAbNiGf"
278
+ }
279
+ ],
280
+ "tool_name": "terminal",
281
+ "parsed_args": {
282
+ "command": "ls"
283
+ },
284
+ "text_tool_leak": false,
285
+ "usage": {
286
+ "completion_tokens": 10,
287
+ "prompt_tokens": 3917,
288
+ "total_tokens": 3927,
289
+ "prompt_tokens_details": {
290
+ "cached_tokens": 3404
291
+ }
292
+ }
293
+ },
294
+ {
295
+ "name": "a_python_version",
296
+ "suite": "suite_a",
297
+ "category": "terminal",
298
+ "passed": true,
299
+ "failure": null,
300
+ "elapsed_s": 0.249,
301
+ "finish_reason": "tool_calls",
302
+ "content": "",
303
+ "tool_calls": [
304
+ {
305
+ "type": "function",
306
+ "function": {
307
+ "name": "terminal",
308
+ "arguments": "{\"command\":\"python3 --version\"}"
309
+ },
310
+ "id": "LPPDyPVusg8pC7UnHNnY0W1qHl2tfPJR"
311
+ }
312
+ ],
313
+ "tool_name": "terminal",
314
+ "parsed_args": {
315
+ "command": "python3 --version"
316
+ },
317
+ "text_tool_leak": false,
318
+ "usage": {
319
+ "completion_tokens": 13,
320
+ "prompt_tokens": 3925,
321
+ "total_tokens": 3938,
322
+ "prompt_tokens_details": {
323
+ "cached_tokens": 3410
324
+ }
325
+ }
326
+ },
327
+ {
328
+ "name": "a_read_file",
329
+ "suite": "suite_a",
330
+ "category": "file",
331
+ "passed": true,
332
+ "failure": null,
333
+ "elapsed_s": 0.285,
334
+ "finish_reason": "tool_calls",
335
+ "content": "",
336
+ "tool_calls": [
337
+ {
338
+ "type": "function",
339
+ "function": {
340
+ "name": "read_file",
341
+ "arguments": "{\"path\":\"/tmp/hermes_eval_marker.txt\"}"
342
+ },
343
+ "id": "Kt4jCl38bKOWd9CtnMtLZ4lUakwdli29"
344
+ }
345
+ ],
346
+ "tool_name": "read_file",
347
+ "parsed_args": {
348
+ "path": "/tmp/hermes_eval_marker.txt"
349
+ },
350
+ "text_tool_leak": false,
351
+ "usage": {
352
+ "completion_tokens": 19,
353
+ "prompt_tokens": 3923,
354
+ "total_tokens": 3942,
355
+ "prompt_tokens_details": {
356
+ "cached_tokens": 3404
357
+ }
358
+ }
359
+ },
360
+ {
361
+ "name": "a_search_repo",
362
+ "suite": "suite_a",
363
+ "category": "file",
364
+ "passed": true,
365
+ "failure": null,
366
+ "elapsed_s": 0.266,
367
+ "finish_reason": "tool_calls",
368
+ "content": "",
369
+ "tool_calls": [
370
+ {
371
+ "type": "function",
372
+ "function": {
373
+ "name": "search_files",
374
+ "arguments": "{\"pattern\":\"browser_navigate\",\"path\":\".\"}"
375
+ },
376
+ "id": "zgwzeHDt0y2mWpBvZR1zyTlJ8GVF461F"
377
+ }
378
+ ],
379
+ "tool_name": "search_files",
380
+ "parsed_args": {
381
+ "pattern": "browser_navigate",
382
+ "path": "."
383
+ },
384
+ "text_tool_leak": false,
385
+ "usage": {
386
+ "completion_tokens": 17,
387
+ "prompt_tokens": 3920,
388
+ "total_tokens": 3937,
389
+ "prompt_tokens_details": {
390
+ "cached_tokens": 3404
391
+ }
392
+ }
393
+ },
394
+ {
395
+ "name": "a_write_file",
396
+ "suite": "suite_a",
397
+ "category": "file",
398
+ "passed": true,
399
+ "failure": null,
400
+ "elapsed_s": 0.337,
401
+ "finish_reason": "tool_calls",
402
+ "content": "",
403
+ "tool_calls": [
404
+ {
405
+ "type": "function",
406
+ "function": {
407
+ "name": "write_file",
408
+ "arguments": "{\"path\":\"/tmp/hermes_router_note.txt\",\"content\":\"hello\"}"
409
+ },
410
+ "id": "K5uGcamCb6rZuB4Im1qeKCwPU8mxEOMU"
411
+ }
412
+ ],
413
+ "tool_name": "write_file",
414
+ "parsed_args": {
415
+ "path": "/tmp/hermes_router_note.txt",
416
+ "content": "hello"
417
+ },
418
+ "text_tool_leak": false,
419
+ "usage": {
420
+ "completion_tokens": 23,
421
+ "prompt_tokens": 3925,
422
+ "total_tokens": 3948,
423
+ "prompt_tokens_details": {
424
+ "cached_tokens": 3404
425
+ }
426
+ }
427
+ },
428
+ {
429
+ "name": "a_no_tool_greeting",
430
+ "suite": "suite_a",
431
+ "category": "no_tool",
432
+ "passed": true,
433
+ "failure": null,
434
+ "elapsed_s": 0.195,
435
+ "finish_reason": "stop",
436
+ "content": "Hello!",
437
+ "tool_calls": [],
438
+ "tool_name": null,
439
+ "parsed_args": {},
440
+ "text_tool_leak": false,
441
+ "usage": {
442
+ "completion_tokens": 3,
443
+ "prompt_tokens": 3914,
444
+ "total_tokens": 3917,
445
+ "prompt_tokens_details": {
446
+ "cached_tokens": 3404
447
+ }
448
+ }
449
+ },
450
+ {
451
+ "name": "a_no_tool_explain",
452
+ "suite": "suite_a",
453
+ "category": "no_tool",
454
+ "passed": true,
455
+ "failure": null,
456
+ "elapsed_s": 0.274,
457
+ "finish_reason": "stop",
458
+ "content": "A router chooses which expert networks should process each token.",
459
+ "tool_calls": [],
460
+ "tool_name": null,
461
+ "parsed_args": {},
462
+ "text_tool_leak": false,
463
+ "usage": {
464
+ "completion_tokens": 12,
465
+ "prompt_tokens": 3926,
466
+ "total_tokens": 3938,
467
+ "prompt_tokens_details": {
468
+ "cached_tokens": 3404
469
+ }
470
+ }
471
+ },
472
+ {
473
+ "name": "a_no_tool_do_not",
474
+ "suite": "suite_a",
475
+ "category": "no_tool",
476
+ "passed": true,
477
+ "failure": null,
478
+ "elapsed_s": 0.193,
479
+ "finish_reason": "stop",
480
+ "content": "done",
481
+ "tool_calls": [],
482
+ "tool_name": null,
483
+ "parsed_args": {},
484
+ "text_tool_leak": false,
485
+ "usage": {
486
+ "completion_tokens": 2,
487
+ "prompt_tokens": 3920,
488
+ "total_tokens": 3922,
489
+ "prompt_tokens_details": {
490
+ "cached_tokens": 3404
491
+ }
492
+ }
493
+ },
494
+ {
495
+ "name": "a_no_tool_word_browser",
496
+ "suite": "suite_a",
497
+ "category": "no_tool",
498
+ "passed": true,
499
+ "failure": null,
500
+ "elapsed_s": 0.222,
501
+ "finish_reason": "stop",
502
+ "content": "The browser opened a quiet page.",
503
+ "tool_calls": [],
504
+ "tool_name": null,
505
+ "parsed_args": {},
506
+ "text_tool_leak": false,
507
+ "usage": {
508
+ "completion_tokens": 8,
509
+ "prompt_tokens": 3919,
510
+ "total_tokens": 3927,
511
+ "prompt_tokens_details": {
512
+ "cached_tokens": 3404
513
+ }
514
+ }
515
+ },
516
+ {
517
+ "name": "a_final_browser",
518
+ "suite": "suite_a",
519
+ "category": "finalization",
520
+ "passed": true,
521
+ "failure": null,
522
+ "elapsed_s": 0.286,
523
+ "finish_reason": "stop",
524
+ "content": "Austin is 82 F and sunny.",
525
+ "tool_calls": [],
526
+ "tool_name": null,
527
+ "parsed_args": {},
528
+ "text_tool_leak": false,
529
+ "usage": {
530
+ "completion_tokens": 10,
531
+ "prompt_tokens": 3975,
532
+ "total_tokens": 3985,
533
+ "prompt_tokens_details": {
534
+ "cached_tokens": 3410
535
+ }
536
+ }
537
+ },
538
+ {
539
+ "name": "a_final_terminal",
540
+ "suite": "suite_a",
541
+ "category": "finalization",
542
+ "passed": true,
543
+ "failure": null,
544
+ "elapsed_s": 0.265,
545
+ "finish_reason": "stop",
546
+ "content": "hermes-tool-test",
547
+ "tool_calls": [],
548
+ "tool_name": null,
549
+ "parsed_args": {},
550
+ "text_tool_leak": false,
551
+ "usage": {
552
+ "completion_tokens": 7,
553
+ "prompt_tokens": 3957,
554
+ "total_tokens": 3964,
555
+ "prompt_tokens_details": {
556
+ "cached_tokens": 3410
557
+ }
558
+ }
559
+ },
560
+ {
561
+ "name": "a_final_file",
562
+ "suite": "suite_a",
563
+ "category": "finalization",
564
+ "passed": true,
565
+ "failure": null,
566
+ "elapsed_s": 0.246,
567
+ "finish_reason": "stop",
568
+ "content": "marker: fixed-schema",
569
+ "tool_calls": [],
570
+ "tool_name": null,
571
+ "parsed_args": {},
572
+ "text_tool_leak": false,
573
+ "usage": {
574
+ "completion_tokens": 5,
575
+ "prompt_tokens": 3963,
576
+ "total_tokens": 3968,
577
+ "prompt_tokens_details": {
578
+ "cached_tokens": 3410
579
+ }
580
+ }
581
+ },
582
+ {
583
+ "name": "b_weather_plain",
584
+ "suite": "suite_b",
585
+ "category": "browser",
586
+ "passed": true,
587
+ "failure": null,
588
+ "elapsed_s": 0.328,
589
+ "finish_reason": "tool_calls",
590
+ "content": "",
591
+ "tool_calls": [
592
+ {
593
+ "type": "function",
594
+ "function": {
595
+ "name": "browser_navigate",
596
+ "arguments": "{\"url\":\"https://www.google.com/search?q=current+Austin+TX+weather\"}"
597
+ },
598
+ "id": "i90A1PoeUihCCRRH355AsCIMfqQPnQsl"
599
+ }
600
+ ],
601
+ "tool_name": "browser_navigate",
602
+ "parsed_args": {
603
+ "url": "https://www.google.com/search?q=current+Austin+TX+weather"
604
+ },
605
+ "text_tool_leak": false,
606
+ "usage": {
607
+ "completion_tokens": 29,
608
+ "prompt_tokens": 3920,
609
+ "total_tokens": 3949,
610
+ "prompt_tokens_details": {
611
+ "cached_tokens": 3404
612
+ }
613
+ }
614
+ },
615
+ {
616
+ "name": "b_web_search",
617
+ "suite": "suite_b",
618
+ "category": "browser",
619
+ "passed": true,
620
+ "failure": null,
621
+ "elapsed_s": 0.356,
622
+ "finish_reason": "tool_calls",
623
+ "content": "",
624
+ "tool_calls": [
625
+ {
626
+ "type": "function",
627
+ "function": {
628
+ "name": "browser_navigate",
629
+ "arguments": "{\"url\":\"https://www.google.com/search?q=Liquid+AI+LFM2.5+context+length\"}"
630
+ },
631
+ "id": "5Ef0XHS5CeZrQFXize4obuJWIVbU8H38"
632
+ }
633
+ ],
634
+ "tool_name": "browser_navigate",
635
+ "parsed_args": {
636
+ "url": "https://www.google.com/search?q=Liquid+AI+LFM2.5+context+length"
637
+ },
638
+ "text_tool_leak": false,
639
+ "usage": {
640
+ "completion_tokens": 34,
641
+ "prompt_tokens": 3924,
642
+ "total_tokens": 3958,
643
+ "prompt_tokens_details": {
644
+ "cached_tokens": 3404
645
+ }
646
+ }
647
+ },
648
+ {
649
+ "name": "b_terminal_uname",
650
+ "suite": "suite_b",
651
+ "category": "terminal",
652
+ "passed": true,
653
+ "failure": null,
654
+ "elapsed_s": 0.248,
655
+ "finish_reason": "tool_calls",
656
+ "content": "",
657
+ "tool_calls": [
658
+ {
659
+ "type": "function",
660
+ "function": {
661
+ "name": "terminal",
662
+ "arguments": "{\"command\":\"uname -m\"}"
663
+ },
664
+ "id": "gklswYTTUQh8zblB2T6txt3GPc4PfsUY"
665
+ }
666
+ ],
667
+ "tool_name": "terminal",
668
+ "parsed_args": {
669
+ "command": "uname -m"
670
+ },
671
+ "text_tool_leak": false,
672
+ "usage": {
673
+ "completion_tokens": 13,
674
+ "prompt_tokens": 3920,
675
+ "total_tokens": 3933,
676
+ "prompt_tokens_details": {
677
+ "cached_tokens": 3404
678
+ }
679
+ }
680
+ },
681
+ {
682
+ "name": "b_terminal_whoami",
683
+ "suite": "suite_b",
684
+ "category": "terminal",
685
+ "passed": true,
686
+ "failure": null,
687
+ "elapsed_s": 0.237,
688
+ "finish_reason": "tool_calls",
689
+ "content": "",
690
+ "tool_calls": [
691
+ {
692
+ "type": "function",
693
+ "function": {
694
+ "name": "terminal",
695
+ "arguments": "{\"command\":\"whoami\"}"
696
+ },
697
+ "id": "2DfZB1UhHSvObCiAUcPb2gRD2vj0JtvC"
698
+ }
699
+ ],
700
+ "tool_name": "terminal",
701
+ "parsed_args": {
702
+ "command": "whoami"
703
+ },
704
+ "text_tool_leak": false,
705
+ "usage": {
706
+ "completion_tokens": 11,
707
+ "prompt_tokens": 3918,
708
+ "total_tokens": 3929,
709
+ "prompt_tokens_details": {
710
+ "cached_tokens": 3404
711
+ }
712
+ }
713
+ },
714
+ {
715
+ "name": "b_file_search_local",
716
+ "suite": "suite_b",
717
+ "category": "file",
718
+ "passed": true,
719
+ "failure": null,
720
+ "elapsed_s": 0.314,
721
+ "finish_reason": "tool_calls",
722
+ "content": "",
723
+ "tool_calls": [
724
+ {
725
+ "type": "function",
726
+ "function": {
727
+ "name": "search_files",
728
+ "arguments": "{\"pattern\":\"HERMES_PARSE_TEXT_TOOL_CALLS\",\"path\":\".\"}"
729
+ },
730
+ "id": "PEBsBas1xNJwfw33a9ekoBNNkasumCpl"
731
+ }
732
+ ],
733
+ "tool_name": "search_files",
734
+ "parsed_args": {
735
+ "pattern": "HERMES_PARSE_TEXT_TOOL_CALLS",
736
+ "path": "."
737
+ },
738
+ "text_tool_leak": false,
739
+ "usage": {
740
+ "completion_tokens": 24,
741
+ "prompt_tokens": 3927,
742
+ "total_tokens": 3951,
743
+ "prompt_tokens_details": {
744
+ "cached_tokens": 3404
745
+ }
746
+ }
747
+ },
748
+ {
749
+ "name": "b_file_write",
750
+ "suite": "suite_b",
751
+ "category": "file",
752
+ "passed": true,
753
+ "failure": null,
754
+ "elapsed_s": 0.319,
755
+ "finish_reason": "tool_calls",
756
+ "content": "",
757
+ "tool_calls": [
758
+ {
759
+ "type": "function",
760
+ "function": {
761
+ "name": "write_file",
762
+ "arguments": "{\"path\":\"/tmp/hermes_fixed_schema_probe.txt\",\"content\":\"fixed schema\"}"
763
+ },
764
+ "id": "BvqrYluWbL6Tuc2zkskOFWGdYk04gSWJ"
765
+ }
766
+ ],
767
+ "tool_name": "write_file",
768
+ "parsed_args": {
769
+ "path": "/tmp/hermes_fixed_schema_probe.txt",
770
+ "content": "fixed schema"
771
+ },
772
+ "text_tool_leak": false,
773
+ "usage": {
774
+ "completion_tokens": 25,
775
+ "prompt_tokens": 3927,
776
+ "total_tokens": 3952,
777
+ "prompt_tokens_details": {
778
+ "cached_tokens": 3404
779
+ }
780
+ }
781
+ },
782
+ {
783
+ "name": "b_no_tool_command",
784
+ "suite": "suite_b",
785
+ "category": "no_tool",
786
+ "passed": true,
787
+ "failure": null,
788
+ "elapsed_s": 0.22,
789
+ "finish_reason": "stop",
790
+ "content": "The command is `pwd`.",
791
+ "tool_calls": [],
792
+ "tool_name": null,
793
+ "parsed_args": {},
794
+ "text_tool_leak": false,
795
+ "usage": {
796
+ "completion_tokens": 7,
797
+ "prompt_tokens": 3923,
798
+ "total_tokens": 3930,
799
+ "prompt_tokens_details": {
800
+ "cached_tokens": 3404
801
+ }
802
+ }
803
+ },
804
+ {
805
+ "name": "b_no_tool_browser",
806
+ "suite": "suite_b",
807
+ "category": "no_tool",
808
+ "passed": true,
809
+ "failure": null,
810
+ "elapsed_s": 0.245,
811
+ "finish_reason": "stop",
812
+ "content": "A browser is an application for navigating and interacting with web pages.",
813
+ "tool_calls": [],
814
+ "tool_name": null,
815
+ "parsed_args": {},
816
+ "text_tool_leak": false,
817
+ "usage": {
818
+ "completion_tokens": 14,
819
+ "prompt_tokens": 3920,
820
+ "total_tokens": 3934,
821
+ "prompt_tokens_details": {
822
+ "cached_tokens": 3404
823
+ }
824
+ }
825
+ },
826
+ {
827
+ "name": "h_weather_san_antonio",
828
+ "suite": "holdout",
829
+ "category": "browser",
830
+ "passed": true,
831
+ "failure": null,
832
+ "elapsed_s": 0.326,
833
+ "finish_reason": "tool_calls",
834
+ "content": "",
835
+ "tool_calls": [
836
+ {
837
+ "type": "function",
838
+ "function": {
839
+ "name": "browser_navigate",
840
+ "arguments": "{\"url\":\"https://www.google.com/search?q=San+Antonio+weather\"}"
841
+ },
842
+ "id": "JHG9tMBrf2sRw0Bctuw9I3PyhHAx9xCK"
843
+ }
844
+ ],
845
+ "tool_name": "browser_navigate",
846
+ "parsed_args": {
847
+ "url": "https://www.google.com/search?q=San+Antonio+weather"
848
+ },
849
+ "text_tool_leak": false,
850
+ "usage": {
851
+ "completion_tokens": 27,
852
+ "prompt_tokens": 3922,
853
+ "total_tokens": 3949,
854
+ "prompt_tokens_details": {
855
+ "cached_tokens": 3404
856
+ }
857
+ }
858
+ },
859
+ {
860
+ "name": "h_current_docs",
861
+ "suite": "holdout",
862
+ "category": "browser",
863
+ "passed": true,
864
+ "failure": null,
865
+ "elapsed_s": 0.375,
866
+ "finish_reason": "tool_calls",
867
+ "content": "",
868
+ "tool_calls": [
869
+ {
870
+ "type": "function",
871
+ "function": {
872
+ "name": "browser_navigate",
873
+ "arguments": "{\"url\":\"https://www.google.com/search?q=current+docs+mlx_lm+server+tool+calling\"}"
874
+ },
875
+ "id": "L1bRpoN9Aw29tCKyP2p73V031YHL9qBp"
876
+ }
877
+ ],
878
+ "tool_name": "browser_navigate",
879
+ "parsed_args": {
880
+ "url": "https://www.google.com/search?q=current+docs+mlx_lm+server+tool+calling"
881
+ },
882
+ "text_tool_leak": false,
883
+ "usage": {
884
+ "completion_tokens": 36,
885
+ "prompt_tokens": 3924,
886
+ "total_tokens": 3960,
887
+ "prompt_tokens_details": {
888
+ "cached_tokens": 3404
889
+ }
890
+ }
891
+ },
892
+ {
893
+ "name": "h_online_latest",
894
+ "suite": "holdout",
895
+ "category": "browser",
896
+ "passed": true,
897
+ "failure": null,
898
+ "elapsed_s": 0.393,
899
+ "finish_reason": "tool_calls",
900
+ "content": "",
901
+ "tool_calls": [
902
+ {
903
+ "type": "function",
904
+ "function": {
905
+ "name": "browser_navigate",
906
+ "arguments": "{\"url\":\"https://www.google.com/search?q=latest+Liquid+AI+LFM2.5+GUF+info\"}"
907
+ },
908
+ "id": "7E9R3r60RqakQfjq3QdwSVQnwXCoqhPw"
909
+ }
910
+ ],
911
+ "tool_name": "browser_navigate",
912
+ "parsed_args": {
913
+ "url": "https://www.google.com/search?q=latest+Liquid+AI+LFM2.5+GUF+info"
914
+ },
915
+ "text_tool_leak": false,
916
+ "usage": {
917
+ "completion_tokens": 36,
918
+ "prompt_tokens": 3930,
919
+ "total_tokens": 3966,
920
+ "prompt_tokens_details": {
921
+ "cached_tokens": 3404
922
+ }
923
+ }
924
+ },
925
+ {
926
+ "name": "h_noaa",
927
+ "suite": "holdout",
928
+ "category": "browser",
929
+ "passed": true,
930
+ "failure": null,
931
+ "elapsed_s": 0.337,
932
+ "finish_reason": "tool_calls",
933
+ "content": "",
934
+ "tool_calls": [
935
+ {
936
+ "type": "function",
937
+ "function": {
938
+ "name": "browser_navigate",
939
+ "arguments": "{\"url\":\"https://www.google.com/search?q=NOAA+forecast+Austin+Texas\"}"
940
+ },
941
+ "id": "lVckgOVkYLM1pfpMLZE5cP6Nv82mdsbB"
942
+ }
943
+ ],
944
+ "tool_name": "browser_navigate",
945
+ "parsed_args": {
946
+ "url": "https://www.google.com/search?q=NOAA+forecast+Austin+Texas"
947
+ },
948
+ "text_tool_leak": false,
949
+ "usage": {
950
+ "completion_tokens": 31,
951
+ "prompt_tokens": 3926,
952
+ "total_tokens": 3957,
953
+ "prompt_tokens_details": {
954
+ "cached_tokens": 3410
955
+ }
956
+ }
957
+ },
958
+ {
959
+ "name": "h_terminal_date",
960
+ "suite": "holdout",
961
+ "category": "terminal",
962
+ "passed": true,
963
+ "failure": null,
964
+ "elapsed_s": 0.236,
965
+ "finish_reason": "tool_calls",
966
+ "content": "",
967
+ "tool_calls": [
968
+ {
969
+ "type": "function",
970
+ "function": {
971
+ "name": "terminal",
972
+ "arguments": "{\"command\":\"date\"}"
973
+ },
974
+ "id": "uR3vSZzpU6gVyBQXBiCiIzqKx8blgTPd"
975
+ }
976
+ ],
977
+ "tool_name": "terminal",
978
+ "parsed_args": {
979
+ "command": "date"
980
+ },
981
+ "text_tool_leak": false,
982
+ "usage": {
983
+ "completion_tokens": 10,
984
+ "prompt_tokens": 3917,
985
+ "total_tokens": 3927,
986
+ "prompt_tokens_details": {
987
+ "cached_tokens": 3404
988
+ }
989
+ }
990
+ },
991
+ {
992
+ "name": "h_terminal_pwd_plain",
993
+ "suite": "holdout",
994
+ "category": "terminal",
995
+ "passed": true,
996
+ "failure": null,
997
+ "elapsed_s": 0.233,
998
+ "finish_reason": "tool_calls",
999
+ "content": "",
1000
+ "tool_calls": [
1001
+ {
1002
+ "type": "function",
1003
+ "function": {
1004
+ "name": "terminal",
1005
+ "arguments": "{\"command\":\"pwd\"}"
1006
+ },
1007
+ "id": "HunhLXtOEfe9mC03fzmPQoEQdkb8xYhC"
1008
+ }
1009
+ ],
1010
+ "tool_name": "terminal",
1011
+ "parsed_args": {
1012
+ "command": "pwd"
1013
+ },
1014
+ "text_tool_leak": false,
1015
+ "usage": {
1016
+ "completion_tokens": 10,
1017
+ "prompt_tokens": 3919,
1018
+ "total_tokens": 3929,
1019
+ "prompt_tokens_details": {
1020
+ "cached_tokens": 3404
1021
+ }
1022
+ }
1023
+ },
1024
+ {
1025
+ "name": "h_terminal_echo",
1026
+ "suite": "holdout",
1027
+ "category": "terminal",
1028
+ "passed": true,
1029
+ "failure": null,
1030
+ "elapsed_s": 0.255,
1031
+ "finish_reason": "tool_calls",
1032
+ "content": "",
1033
+ "tool_calls": [
1034
+ {
1035
+ "type": "function",
1036
+ "function": {
1037
+ "name": "terminal",
1038
+ "arguments": "{\"command\":\"echo fixed-hermes\"}"
1039
+ },
1040
+ "id": "vtOKdKCSj1seasNqSIyojfqLZ2NtT87B"
1041
+ }
1042
+ ],
1043
+ "tool_name": "terminal",
1044
+ "parsed_args": {
1045
+ "command": "echo fixed-hermes"
1046
+ },
1047
+ "text_tool_leak": false,
1048
+ "usage": {
1049
+ "completion_tokens": 14,
1050
+ "prompt_tokens": 3921,
1051
+ "total_tokens": 3935,
1052
+ "prompt_tokens_details": {
1053
+ "cached_tokens": 3404
1054
+ }
1055
+ }
1056
+ },
1057
+ {
1058
+ "name": "h_terminal_files",
1059
+ "suite": "holdout",
1060
+ "category": "terminal",
1061
+ "passed": true,
1062
+ "failure": null,
1063
+ "elapsed_s": 0.233,
1064
+ "finish_reason": "tool_calls",
1065
+ "content": "",
1066
+ "tool_calls": [
1067
+ {
1068
+ "type": "function",
1069
+ "function": {
1070
+ "name": "terminal",
1071
+ "arguments": "{\"command\":\"ls\"}"
1072
+ },
1073
+ "id": "K9oocX7Jor4NP9qhRV1846qK49ho5MYt"
1074
+ }
1075
+ ],
1076
+ "tool_name": "terminal",
1077
+ "parsed_args": {
1078
+ "command": "ls"
1079
+ },
1080
+ "text_tool_leak": false,
1081
+ "usage": {
1082
+ "completion_tokens": 10,
1083
+ "prompt_tokens": 3919,
1084
+ "total_tokens": 3929,
1085
+ "prompt_tokens_details": {
1086
+ "cached_tokens": 3404
1087
+ }
1088
+ }
1089
+ },
1090
+ {
1091
+ "name": "h_read_absolute",
1092
+ "suite": "holdout",
1093
+ "category": "file",
1094
+ "passed": true,
1095
+ "failure": null,
1096
+ "elapsed_s": 0.286,
1097
+ "finish_reason": "tool_calls",
1098
+ "content": "",
1099
+ "tool_calls": [
1100
+ {
1101
+ "type": "function",
1102
+ "function": {
1103
+ "name": "read_file",
1104
+ "arguments": "{\"path\":\"/tmp/hermes_eval_marker.txt\"}"
1105
+ },
1106
+ "id": "PUHDNxkWQhgGcnNK6VGft4By4fu88xsM"
1107
+ }
1108
+ ],
1109
+ "tool_name": "read_file",
1110
+ "parsed_args": {
1111
+ "path": "/tmp/hermes_eval_marker.txt"
1112
+ },
1113
+ "text_tool_leak": false,
1114
+ "usage": {
1115
+ "completion_tokens": 19,
1116
+ "prompt_tokens": 3925,
1117
+ "total_tokens": 3944,
1118
+ "prompt_tokens_details": {
1119
+ "cached_tokens": 3404
1120
+ }
1121
+ }
1122
+ },
1123
+ {
1124
+ "name": "h_search_local",
1125
+ "suite": "holdout",
1126
+ "category": "file",
1127
+ "passed": true,
1128
+ "failure": null,
1129
+ "elapsed_s": 0.3,
1130
+ "finish_reason": "tool_calls",
1131
+ "content": "",
1132
+ "tool_calls": [
1133
+ {
1134
+ "type": "function",
1135
+ "function": {
1136
+ "name": "search_files",
1137
+ "arguments": "{\"pattern\":\"iter07_structured_tool_calls\",\"path\":\".\"}"
1138
+ },
1139
+ "id": "FSg1hFC9w6F66TdMBsSFYeLHkcGiEJVh"
1140
+ }
1141
+ ],
1142
+ "tool_name": "search_files",
1143
+ "parsed_args": {
1144
+ "pattern": "iter07_structured_tool_calls",
1145
+ "path": "."
1146
+ },
1147
+ "text_tool_leak": false,
1148
+ "usage": {
1149
+ "completion_tokens": 22,
1150
+ "prompt_tokens": 3925,
1151
+ "total_tokens": 3947,
1152
+ "prompt_tokens_details": {
1153
+ "cached_tokens": 3404
1154
+ }
1155
+ }
1156
+ },
1157
+ {
1158
+ "name": "h_search_repo_not_web",
1159
+ "suite": "holdout",
1160
+ "category": "file",
1161
+ "passed": true,
1162
+ "failure": null,
1163
+ "elapsed_s": 0.266,
1164
+ "finish_reason": "tool_calls",
1165
+ "content": "",
1166
+ "tool_calls": [
1167
+ {
1168
+ "type": "function",
1169
+ "function": {
1170
+ "name": "search_files",
1171
+ "arguments": "{\"pattern\":\"browser_snapshot\",\"path\":\".\"}"
1172
+ },
1173
+ "id": "DOT6vyJiuXE3VDmLXoLRZtzvrJ33MGpp"
1174
+ }
1175
+ ],
1176
+ "tool_name": "search_files",
1177
+ "parsed_args": {
1178
+ "pattern": "browser_snapshot",
1179
+ "path": "."
1180
+ },
1181
+ "text_tool_leak": false,
1182
+ "usage": {
1183
+ "completion_tokens": 16,
1184
+ "prompt_tokens": 3922,
1185
+ "total_tokens": 3938,
1186
+ "prompt_tokens_details": {
1187
+ "cached_tokens": 3404
1188
+ }
1189
+ }
1190
+ },
1191
+ {
1192
+ "name": "h_write_absolute",
1193
+ "suite": "holdout",
1194
+ "category": "file",
1195
+ "passed": true,
1196
+ "failure": null,
1197
+ "elapsed_s": 0.312,
1198
+ "finish_reason": "tool_calls",
1199
+ "content": "",
1200
+ "tool_calls": [
1201
+ {
1202
+ "type": "function",
1203
+ "function": {
1204
+ "name": "write_file",
1205
+ "arguments": "{\"path\":\"/tmp/hermes_holdout.txt\",\"content\":\"holdout ok\"}"
1206
+ },
1207
+ "id": "H1vzC1hzpMiUaJ9ubi4ho36mJ2Ls5quB"
1208
+ }
1209
+ ],
1210
+ "tool_name": "write_file",
1211
+ "parsed_args": {
1212
+ "path": "/tmp/hermes_holdout.txt",
1213
+ "content": "holdout ok"
1214
+ },
1215
+ "text_tool_leak": false,
1216
+ "usage": {
1217
+ "completion_tokens": 24,
1218
+ "prompt_tokens": 3926,
1219
+ "total_tokens": 3950,
1220
+ "prompt_tokens_details": {
1221
+ "cached_tokens": 3404
1222
+ }
1223
+ }
1224
+ },
1225
+ {
1226
+ "name": "h_no_tool_hi",
1227
+ "suite": "holdout",
1228
+ "category": "no_tool",
1229
+ "passed": true,
1230
+ "failure": null,
1231
+ "elapsed_s": 0.192,
1232
+ "finish_reason": "stop",
1233
+ "content": "Hello!",
1234
+ "tool_calls": [],
1235
+ "tool_name": null,
1236
+ "parsed_args": {},
1237
+ "text_tool_leak": false,
1238
+ "usage": {
1239
+ "completion_tokens": 3,
1240
+ "prompt_tokens": 3914,
1241
+ "total_tokens": 3917,
1242
+ "prompt_tokens_details": {
1243
+ "cached_tokens": 3404
1244
+ }
1245
+ }
1246
+ },
1247
+ {
1248
+ "name": "h_no_tool_explain",
1249
+ "suite": "holdout",
1250
+ "category": "no_tool",
1251
+ "passed": true,
1252
+ "failure": null,
1253
+ "elapsed_s": 0.306,
1254
+ "finish_reason": "stop",
1255
+ "content": "A browser is an application for navigating and interacting with web pages, while a terminal is an application for running shell commands.",
1256
+ "tool_calls": [],
1257
+ "tool_name": null,
1258
+ "parsed_args": {},
1259
+ "text_tool_leak": false,
1260
+ "usage": {
1261
+ "completion_tokens": 25,
1262
+ "prompt_tokens": 3923,
1263
+ "total_tokens": 3948,
1264
+ "prompt_tokens_details": {
1265
+ "cached_tokens": 3404
1266
+ }
1267
+ }
1268
+ },
1269
+ {
1270
+ "name": "h_no_tool_no_run",
1271
+ "suite": "holdout",
1272
+ "category": "no_tool",
1273
+ "passed": true,
1274
+ "failure": null,
1275
+ "elapsed_s": 0.226,
1276
+ "finish_reason": "stop",
1277
+ "content": "The command is `whoami`.",
1278
+ "tool_calls": [],
1279
+ "tool_name": null,
1280
+ "parsed_args": {},
1281
+ "text_tool_leak": false,
1282
+ "usage": {
1283
+ "completion_tokens": 8,
1284
+ "prompt_tokens": 3923,
1285
+ "total_tokens": 3931,
1286
+ "prompt_tokens_details": {
1287
+ "cached_tokens": 3404
1288
+ }
1289
+ }
1290
+ },
1291
+ {
1292
+ "name": "h_no_tool_sentence",
1293
+ "suite": "holdout",
1294
+ "category": "no_tool",
1295
+ "passed": true,
1296
+ "failure": null,
1297
+ "elapsed_s": 0.216,
1298
+ "finish_reason": "stop",
1299
+ "content": "The file was found.",
1300
+ "tool_calls": [],
1301
+ "tool_name": null,
1302
+ "parsed_args": {},
1303
+ "text_tool_leak": false,
1304
+ "usage": {
1305
+ "completion_tokens": 6,
1306
+ "prompt_tokens": 3919,
1307
+ "total_tokens": 3925,
1308
+ "prompt_tokens_details": {
1309
+ "cached_tokens": 3404
1310
+ }
1311
+ }
1312
+ },
1313
+ {
1314
+ "name": "h_final_file",
1315
+ "suite": "holdout",
1316
+ "category": "finalization",
1317
+ "passed": true,
1318
+ "failure": null,
1319
+ "elapsed_s": 0.274,
1320
+ "finish_reason": "stop",
1321
+ "content": "marker: holdout-fixed",
1322
+ "tool_calls": [],
1323
+ "tool_name": null,
1324
+ "parsed_args": {},
1325
+ "text_tool_leak": false,
1326
+ "usage": {
1327
+ "completion_tokens": 7,
1328
+ "prompt_tokens": 3967,
1329
+ "total_tokens": 3974,
1330
+ "prompt_tokens_details": {
1331
+ "cached_tokens": 3410
1332
+ }
1333
+ }
1334
+ },
1335
+ {
1336
+ "name": "h_final_terminal",
1337
+ "suite": "holdout",
1338
+ "category": "finalization",
1339
+ "passed": true,
1340
+ "failure": null,
1341
+ "elapsed_s": 0.266,
1342
+ "finish_reason": "stop",
1343
+ "content": "fixed-hermes",
1344
+ "tool_calls": [],
1345
+ "tool_name": null,
1346
+ "parsed_args": {},
1347
+ "text_tool_leak": false,
1348
+ "usage": {
1349
+ "completion_tokens": 5,
1350
+ "prompt_tokens": 3956,
1351
+ "total_tokens": 3961,
1352
+ "prompt_tokens_details": {
1353
+ "cached_tokens": 3410
1354
+ }
1355
+ }
1356
+ }
1357
+ ]
1358
+ }
evals/iter10_fused_all_fixed_hermes_parser_disabled.json ADDED
@@ -0,0 +1,1358 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "endpoint": "http://127.0.0.1:8085/v1/chat/completions",
3
+ "model": "release_work/model_upload_iter10_fused",
4
+ "adapter_path": null,
5
+ "tools_source": {
6
+ "hermes_repo": "/Users/jkooker/Documents/Codex/2026-05-28/get-this-new-model-up-and/release_work/hermes-agent-lfm-tool-parser",
7
+ "git_commit": "a68761f5d13a1ec43f09fa605c2f33576ea8899f",
8
+ "toolsets": [
9
+ "terminal_tools",
10
+ "file_tools",
11
+ "browser_tools"
12
+ ],
13
+ "filtered_names": null
14
+ },
15
+ "tools": [
16
+ "browser_back",
17
+ "browser_click",
18
+ "browser_console",
19
+ "browser_get_images",
20
+ "browser_navigate",
21
+ "browser_press",
22
+ "browser_scroll",
23
+ "browser_snapshot",
24
+ "browser_type",
25
+ "patch",
26
+ "read_file",
27
+ "search_files",
28
+ "terminal",
29
+ "write_file"
30
+ ],
31
+ "summary": {
32
+ "passed": 43,
33
+ "total": 43,
34
+ "overall_rate": 1.0,
35
+ "tool_cases": 28,
36
+ "structured_tool_cases_passed": 28,
37
+ "structured_tool_rate": 1.0,
38
+ "no_tool_cases": 10,
39
+ "no_tool_cases_passed": 10,
40
+ "false_positive_tool_rate": 0.0,
41
+ "content_text_tool_leaks": 0,
42
+ "finish_reason_tool_calls": 28,
43
+ "category_metrics": {
44
+ "browser": {
45
+ "passed": 9,
46
+ "total": 9,
47
+ "rate": 1.0
48
+ },
49
+ "file": {
50
+ "passed": 9,
51
+ "total": 9,
52
+ "rate": 1.0
53
+ },
54
+ "finalization": {
55
+ "passed": 5,
56
+ "total": 5,
57
+ "rate": 1.0
58
+ },
59
+ "no_tool": {
60
+ "passed": 10,
61
+ "total": 10,
62
+ "rate": 1.0
63
+ },
64
+ "terminal": {
65
+ "passed": 10,
66
+ "total": 10,
67
+ "rate": 1.0
68
+ }
69
+ },
70
+ "suite_metrics": {
71
+ "holdout": {
72
+ "passed": 18,
73
+ "total": 18,
74
+ "rate": 1.0
75
+ },
76
+ "suite_a": {
77
+ "passed": 17,
78
+ "total": 17,
79
+ "rate": 1.0
80
+ },
81
+ "suite_b": {
82
+ "passed": 8,
83
+ "total": 8,
84
+ "rate": 1.0
85
+ }
86
+ },
87
+ "acceptance": {
88
+ "structured_tool_rate_gte_0_95": true,
89
+ "false_positive_tool_rate_lte_0_05": true,
90
+ "zero_text_tool_leaks": true,
91
+ "all_suites_gte_0_95": true
92
+ },
93
+ "failures": {}
94
+ },
95
+ "results": [
96
+ {
97
+ "name": "a_weather_austin",
98
+ "suite": "suite_a",
99
+ "category": "browser",
100
+ "passed": true,
101
+ "failure": null,
102
+ "elapsed_s": 1.501,
103
+ "finish_reason": "tool_calls",
104
+ "content": "",
105
+ "tool_calls": [
106
+ {
107
+ "function": {
108
+ "name": "browser_navigate",
109
+ "arguments": "{\"url\": \"https://www.google.com/search?q=Austin+TX+weather+today\"}"
110
+ },
111
+ "type": "function",
112
+ "id": "bf4550bd-767e-4a89-a901-72fd50b26461"
113
+ }
114
+ ],
115
+ "tool_name": "browser_navigate",
116
+ "parsed_args": {
117
+ "url": "https://www.google.com/search?q=Austin+TX+weather+today"
118
+ },
119
+ "text_tool_leak": false,
120
+ "usage": {
121
+ "prompt_tokens": 3920,
122
+ "completion_tokens": 30,
123
+ "total_tokens": 3950,
124
+ "prompt_tokens_details": {
125
+ "cached_tokens": 0
126
+ }
127
+ }
128
+ },
129
+ {
130
+ "name": "a_latest_mlx",
131
+ "suite": "suite_a",
132
+ "category": "browser",
133
+ "passed": true,
134
+ "failure": null,
135
+ "elapsed_s": 0.364,
136
+ "finish_reason": "tool_calls",
137
+ "content": "",
138
+ "tool_calls": [
139
+ {
140
+ "function": {
141
+ "name": "browser_navigate",
142
+ "arguments": "{\"url\": \"https://www.google.com/search?q=latest+mlx-lm+release+notes\"}"
143
+ },
144
+ "type": "function",
145
+ "id": "2261370d-40f0-4fe4-9ea8-e856aed3b2e1"
146
+ }
147
+ ],
148
+ "tool_name": "browser_navigate",
149
+ "parsed_args": {
150
+ "url": "https://www.google.com/search?q=latest+mlx-lm+release+notes"
151
+ },
152
+ "text_tool_leak": false,
153
+ "usage": {
154
+ "prompt_tokens": 3923,
155
+ "completion_tokens": 32,
156
+ "total_tokens": 3955,
157
+ "prompt_tokens_details": {
158
+ "cached_tokens": 3907
159
+ }
160
+ }
161
+ },
162
+ {
163
+ "name": "a_noaa_forecast",
164
+ "suite": "suite_a",
165
+ "category": "browser",
166
+ "passed": true,
167
+ "failure": null,
168
+ "elapsed_s": 1.369,
169
+ "finish_reason": "tool_calls",
170
+ "content": "",
171
+ "tool_calls": [
172
+ {
173
+ "function": {
174
+ "name": "browser_navigate",
175
+ "arguments": "{\"url\": \"https://www.google.com/search?q=NOAA+Austin+forecast\"}"
176
+ },
177
+ "type": "function",
178
+ "id": "a527f926-3e74-4f06-9458-058539b9776a"
179
+ }
180
+ ],
181
+ "tool_name": "browser_navigate",
182
+ "parsed_args": {
183
+ "url": "https://www.google.com/search?q=NOAA+Austin+forecast"
184
+ },
185
+ "text_tool_leak": false,
186
+ "usage": {
187
+ "prompt_tokens": 3926,
188
+ "completion_tokens": 30,
189
+ "total_tokens": 3956,
190
+ "prompt_tokens_details": {
191
+ "cached_tokens": 0
192
+ }
193
+ }
194
+ },
195
+ {
196
+ "name": "a_echo",
197
+ "suite": "suite_a",
198
+ "category": "terminal",
199
+ "passed": true,
200
+ "failure": null,
201
+ "elapsed_s": 1.264,
202
+ "finish_reason": "tool_calls",
203
+ "content": "",
204
+ "tool_calls": [
205
+ {
206
+ "function": {
207
+ "name": "terminal",
208
+ "arguments": "{\"command\": \"echo hermes-tool-test\"}"
209
+ },
210
+ "type": "function",
211
+ "id": "9b06e089-590b-48f1-ae65-660d758fd964"
212
+ }
213
+ ],
214
+ "tool_name": "terminal",
215
+ "parsed_args": {
216
+ "command": "echo hermes-tool-test"
217
+ },
218
+ "text_tool_leak": false,
219
+ "usage": {
220
+ "prompt_tokens": 3919,
221
+ "completion_tokens": 16,
222
+ "total_tokens": 3935,
223
+ "prompt_tokens_details": {
224
+ "cached_tokens": 0
225
+ }
226
+ }
227
+ },
228
+ {
229
+ "name": "a_pwd",
230
+ "suite": "suite_a",
231
+ "category": "terminal",
232
+ "passed": true,
233
+ "failure": null,
234
+ "elapsed_s": 0.167,
235
+ "finish_reason": "tool_calls",
236
+ "content": "",
237
+ "tool_calls": [
238
+ {
239
+ "function": {
240
+ "name": "terminal",
241
+ "arguments": "{\"command\": \"pwd\"}"
242
+ },
243
+ "type": "function",
244
+ "id": "bc3205ee-6548-4575-a14c-7844c5b27338"
245
+ }
246
+ ],
247
+ "tool_name": "terminal",
248
+ "parsed_args": {
249
+ "command": "pwd"
250
+ },
251
+ "text_tool_leak": false,
252
+ "usage": {
253
+ "prompt_tokens": 3915,
254
+ "completion_tokens": 11,
255
+ "total_tokens": 3926,
256
+ "prompt_tokens_details": {
257
+ "cached_tokens": 3907
258
+ }
259
+ }
260
+ },
261
+ {
262
+ "name": "a_ls",
263
+ "suite": "suite_a",
264
+ "category": "terminal",
265
+ "passed": true,
266
+ "failure": null,
267
+ "elapsed_s": 0.181,
268
+ "finish_reason": "tool_calls",
269
+ "content": "",
270
+ "tool_calls": [
271
+ {
272
+ "function": {
273
+ "name": "terminal",
274
+ "arguments": "{\"command\": \"ls\"}"
275
+ },
276
+ "type": "function",
277
+ "id": "f01be33a-a22d-40b5-a8a0-cdeddd6fcd70"
278
+ }
279
+ ],
280
+ "tool_name": "terminal",
281
+ "parsed_args": {
282
+ "command": "ls"
283
+ },
284
+ "text_tool_leak": false,
285
+ "usage": {
286
+ "prompt_tokens": 3917,
287
+ "completion_tokens": 11,
288
+ "total_tokens": 3928,
289
+ "prompt_tokens_details": {
290
+ "cached_tokens": 3907
291
+ }
292
+ }
293
+ },
294
+ {
295
+ "name": "a_python_version",
296
+ "suite": "suite_a",
297
+ "category": "terminal",
298
+ "passed": true,
299
+ "failure": null,
300
+ "elapsed_s": 1.244,
301
+ "finish_reason": "tool_calls",
302
+ "content": "",
303
+ "tool_calls": [
304
+ {
305
+ "function": {
306
+ "name": "terminal",
307
+ "arguments": "{\"command\": \"python3 --version\"}"
308
+ },
309
+ "type": "function",
310
+ "id": "6822a906-5889-468d-a56a-4bd9befd3ac2"
311
+ }
312
+ ],
313
+ "tool_name": "terminal",
314
+ "parsed_args": {
315
+ "command": "python3 --version"
316
+ },
317
+ "text_tool_leak": false,
318
+ "usage": {
319
+ "prompt_tokens": 3925,
320
+ "completion_tokens": 14,
321
+ "total_tokens": 3939,
322
+ "prompt_tokens_details": {
323
+ "cached_tokens": 0
324
+ }
325
+ }
326
+ },
327
+ {
328
+ "name": "a_read_file",
329
+ "suite": "suite_a",
330
+ "category": "file",
331
+ "passed": true,
332
+ "failure": null,
333
+ "elapsed_s": 1.291,
334
+ "finish_reason": "tool_calls",
335
+ "content": "",
336
+ "tool_calls": [
337
+ {
338
+ "function": {
339
+ "name": "read_file",
340
+ "arguments": "{\"path\": \"/tmp/hermes_eval_marker.txt\"}"
341
+ },
342
+ "type": "function",
343
+ "id": "f5533f72-96f0-45ae-996e-6ee5db35c6a5"
344
+ }
345
+ ],
346
+ "tool_name": "read_file",
347
+ "parsed_args": {
348
+ "path": "/tmp/hermes_eval_marker.txt"
349
+ },
350
+ "text_tool_leak": false,
351
+ "usage": {
352
+ "prompt_tokens": 3923,
353
+ "completion_tokens": 20,
354
+ "total_tokens": 3943,
355
+ "prompt_tokens_details": {
356
+ "cached_tokens": 0
357
+ }
358
+ }
359
+ },
360
+ {
361
+ "name": "a_search_repo",
362
+ "suite": "suite_a",
363
+ "category": "file",
364
+ "passed": true,
365
+ "failure": null,
366
+ "elapsed_s": 0.239,
367
+ "finish_reason": "tool_calls",
368
+ "content": "",
369
+ "tool_calls": [
370
+ {
371
+ "function": {
372
+ "name": "search_files",
373
+ "arguments": "{\"pattern\": \"browser_navigate\", \"path\": \".\"}"
374
+ },
375
+ "type": "function",
376
+ "id": "f808525c-4077-49e9-9c8c-97724b8203d3"
377
+ }
378
+ ],
379
+ "tool_name": "search_files",
380
+ "parsed_args": {
381
+ "pattern": "browser_navigate",
382
+ "path": "."
383
+ },
384
+ "text_tool_leak": false,
385
+ "usage": {
386
+ "prompt_tokens": 3920,
387
+ "completion_tokens": 18,
388
+ "total_tokens": 3938,
389
+ "prompt_tokens_details": {
390
+ "cached_tokens": 3907
391
+ }
392
+ }
393
+ },
394
+ {
395
+ "name": "a_write_file",
396
+ "suite": "suite_a",
397
+ "category": "file",
398
+ "passed": true,
399
+ "failure": null,
400
+ "elapsed_s": 0.292,
401
+ "finish_reason": "tool_calls",
402
+ "content": "",
403
+ "tool_calls": [
404
+ {
405
+ "function": {
406
+ "name": "write_file",
407
+ "arguments": "{\"path\": \"/tmp/hermes_router_note.txt\", \"content\": \"hello\"}"
408
+ },
409
+ "type": "function",
410
+ "id": "14736fa8-32eb-48b7-8163-1febbe6aaaef"
411
+ }
412
+ ],
413
+ "tool_name": "write_file",
414
+ "parsed_args": {
415
+ "path": "/tmp/hermes_router_note.txt",
416
+ "content": "hello"
417
+ },
418
+ "text_tool_leak": false,
419
+ "usage": {
420
+ "prompt_tokens": 3925,
421
+ "completion_tokens": 24,
422
+ "total_tokens": 3949,
423
+ "prompt_tokens_details": {
424
+ "cached_tokens": 3907
425
+ }
426
+ }
427
+ },
428
+ {
429
+ "name": "a_no_tool_greeting",
430
+ "suite": "suite_a",
431
+ "category": "no_tool",
432
+ "passed": true,
433
+ "failure": null,
434
+ "elapsed_s": 0.103,
435
+ "finish_reason": "stop",
436
+ "content": "Hello!",
437
+ "tool_calls": [],
438
+ "tool_name": null,
439
+ "parsed_args": {},
440
+ "text_tool_leak": false,
441
+ "usage": {
442
+ "prompt_tokens": 3914,
443
+ "completion_tokens": 3,
444
+ "total_tokens": 3917,
445
+ "prompt_tokens_details": {
446
+ "cached_tokens": 3907
447
+ }
448
+ }
449
+ },
450
+ {
451
+ "name": "a_no_tool_explain",
452
+ "suite": "suite_a",
453
+ "category": "no_tool",
454
+ "passed": true,
455
+ "failure": null,
456
+ "elapsed_s": 0.184,
457
+ "finish_reason": "stop",
458
+ "content": "A router chooses which expert networks should process each token.",
459
+ "tool_calls": [],
460
+ "tool_name": null,
461
+ "parsed_args": {},
462
+ "text_tool_leak": false,
463
+ "usage": {
464
+ "prompt_tokens": 3926,
465
+ "completion_tokens": 12,
466
+ "total_tokens": 3938,
467
+ "prompt_tokens_details": {
468
+ "cached_tokens": 3907
469
+ }
470
+ }
471
+ },
472
+ {
473
+ "name": "a_no_tool_do_not",
474
+ "suite": "suite_a",
475
+ "category": "no_tool",
476
+ "passed": true,
477
+ "failure": null,
478
+ "elapsed_s": 0.13,
479
+ "finish_reason": "stop",
480
+ "content": "done",
481
+ "tool_calls": [],
482
+ "tool_name": null,
483
+ "parsed_args": {},
484
+ "text_tool_leak": false,
485
+ "usage": {
486
+ "prompt_tokens": 3920,
487
+ "completion_tokens": 2,
488
+ "total_tokens": 3922,
489
+ "prompt_tokens_details": {
490
+ "cached_tokens": 3907
491
+ }
492
+ }
493
+ },
494
+ {
495
+ "name": "a_no_tool_word_browser",
496
+ "suite": "suite_a",
497
+ "category": "no_tool",
498
+ "passed": true,
499
+ "failure": null,
500
+ "elapsed_s": 0.149,
501
+ "finish_reason": "stop",
502
+ "content": "The browser opened a quiet page.",
503
+ "tool_calls": [],
504
+ "tool_name": null,
505
+ "parsed_args": {},
506
+ "text_tool_leak": false,
507
+ "usage": {
508
+ "prompt_tokens": 3919,
509
+ "completion_tokens": 8,
510
+ "total_tokens": 3927,
511
+ "prompt_tokens_details": {
512
+ "cached_tokens": 3907
513
+ }
514
+ }
515
+ },
516
+ {
517
+ "name": "a_final_browser",
518
+ "suite": "suite_a",
519
+ "category": "finalization",
520
+ "passed": true,
521
+ "failure": null,
522
+ "elapsed_s": 1.212,
523
+ "finish_reason": "stop",
524
+ "content": "Austin is 82 F and sunny.",
525
+ "tool_calls": [],
526
+ "tool_name": null,
527
+ "parsed_args": {},
528
+ "text_tool_leak": false,
529
+ "usage": {
530
+ "prompt_tokens": 3975,
531
+ "completion_tokens": 10,
532
+ "total_tokens": 3985,
533
+ "prompt_tokens_details": {
534
+ "cached_tokens": 0
535
+ }
536
+ }
537
+ },
538
+ {
539
+ "name": "a_final_terminal",
540
+ "suite": "suite_a",
541
+ "category": "finalization",
542
+ "passed": true,
543
+ "failure": null,
544
+ "elapsed_s": 1.152,
545
+ "finish_reason": "stop",
546
+ "content": "hermes-tool-test",
547
+ "tool_calls": [],
548
+ "tool_name": null,
549
+ "parsed_args": {},
550
+ "text_tool_leak": false,
551
+ "usage": {
552
+ "prompt_tokens": 3957,
553
+ "completion_tokens": 7,
554
+ "total_tokens": 3964,
555
+ "prompt_tokens_details": {
556
+ "cached_tokens": 0
557
+ }
558
+ }
559
+ },
560
+ {
561
+ "name": "a_final_file",
562
+ "suite": "suite_a",
563
+ "category": "finalization",
564
+ "passed": true,
565
+ "failure": null,
566
+ "elapsed_s": 1.144,
567
+ "finish_reason": "stop",
568
+ "content": "marker: fixed-schema",
569
+ "tool_calls": [],
570
+ "tool_name": null,
571
+ "parsed_args": {},
572
+ "text_tool_leak": false,
573
+ "usage": {
574
+ "prompt_tokens": 3963,
575
+ "completion_tokens": 5,
576
+ "total_tokens": 3968,
577
+ "prompt_tokens_details": {
578
+ "cached_tokens": 0
579
+ }
580
+ }
581
+ },
582
+ {
583
+ "name": "b_weather_plain",
584
+ "suite": "suite_b",
585
+ "category": "browser",
586
+ "passed": true,
587
+ "failure": null,
588
+ "elapsed_s": 0.342,
589
+ "finish_reason": "tool_calls",
590
+ "content": "",
591
+ "tool_calls": [
592
+ {
593
+ "function": {
594
+ "name": "browser_navigate",
595
+ "arguments": "{\"url\": \"https://www.google.com/search?q=current+Austin+TX+weather\"}"
596
+ },
597
+ "type": "function",
598
+ "id": "798786e5-118c-47d9-af0d-a5c69c73b631"
599
+ }
600
+ ],
601
+ "tool_name": "browser_navigate",
602
+ "parsed_args": {
603
+ "url": "https://www.google.com/search?q=current+Austin+TX+weather"
604
+ },
605
+ "text_tool_leak": false,
606
+ "usage": {
607
+ "prompt_tokens": 3920,
608
+ "completion_tokens": 30,
609
+ "total_tokens": 3950,
610
+ "prompt_tokens_details": {
611
+ "cached_tokens": 3907
612
+ }
613
+ }
614
+ },
615
+ {
616
+ "name": "b_web_search",
617
+ "suite": "suite_b",
618
+ "category": "browser",
619
+ "passed": true,
620
+ "failure": null,
621
+ "elapsed_s": 0.381,
622
+ "finish_reason": "tool_calls",
623
+ "content": "",
624
+ "tool_calls": [
625
+ {
626
+ "function": {
627
+ "name": "browser_navigate",
628
+ "arguments": "{\"url\": \"https://www.google.com/search?q=Liquid+AI+LFM2.5+context+length\"}"
629
+ },
630
+ "type": "function",
631
+ "id": "da67ec2b-b313-43c4-ac72-f943f537e99a"
632
+ }
633
+ ],
634
+ "tool_name": "browser_navigate",
635
+ "parsed_args": {
636
+ "url": "https://www.google.com/search?q=Liquid+AI+LFM2.5+context+length"
637
+ },
638
+ "text_tool_leak": false,
639
+ "usage": {
640
+ "prompt_tokens": 3924,
641
+ "completion_tokens": 35,
642
+ "total_tokens": 3959,
643
+ "prompt_tokens_details": {
644
+ "cached_tokens": 3907
645
+ }
646
+ }
647
+ },
648
+ {
649
+ "name": "b_terminal_uname",
650
+ "suite": "suite_b",
651
+ "category": "terminal",
652
+ "passed": true,
653
+ "failure": null,
654
+ "elapsed_s": 0.201,
655
+ "finish_reason": "tool_calls",
656
+ "content": "",
657
+ "tool_calls": [
658
+ {
659
+ "function": {
660
+ "name": "terminal",
661
+ "arguments": "{\"command\": \"uname -m\"}"
662
+ },
663
+ "type": "function",
664
+ "id": "96aa537c-dfc6-4563-9f7b-a5bffd830cf9"
665
+ }
666
+ ],
667
+ "tool_name": "terminal",
668
+ "parsed_args": {
669
+ "command": "uname -m"
670
+ },
671
+ "text_tool_leak": false,
672
+ "usage": {
673
+ "prompt_tokens": 3920,
674
+ "completion_tokens": 14,
675
+ "total_tokens": 3934,
676
+ "prompt_tokens_details": {
677
+ "cached_tokens": 3907
678
+ }
679
+ }
680
+ },
681
+ {
682
+ "name": "b_terminal_whoami",
683
+ "suite": "suite_b",
684
+ "category": "terminal",
685
+ "passed": true,
686
+ "failure": null,
687
+ "elapsed_s": 0.207,
688
+ "finish_reason": "tool_calls",
689
+ "content": "",
690
+ "tool_calls": [
691
+ {
692
+ "function": {
693
+ "name": "terminal",
694
+ "arguments": "{\"command\": \"whoami\"}"
695
+ },
696
+ "type": "function",
697
+ "id": "abf98599-6537-4cfb-8464-c08222ce30db"
698
+ }
699
+ ],
700
+ "tool_name": "terminal",
701
+ "parsed_args": {
702
+ "command": "whoami"
703
+ },
704
+ "text_tool_leak": false,
705
+ "usage": {
706
+ "prompt_tokens": 3918,
707
+ "completion_tokens": 12,
708
+ "total_tokens": 3930,
709
+ "prompt_tokens_details": {
710
+ "cached_tokens": 3907
711
+ }
712
+ }
713
+ },
714
+ {
715
+ "name": "b_file_search_local",
716
+ "suite": "suite_b",
717
+ "category": "file",
718
+ "passed": true,
719
+ "failure": null,
720
+ "elapsed_s": 0.304,
721
+ "finish_reason": "tool_calls",
722
+ "content": "",
723
+ "tool_calls": [
724
+ {
725
+ "function": {
726
+ "name": "search_files",
727
+ "arguments": "{\"pattern\": \"HERMES_PARSE_TEXT_TOOL_CALLS\", \"path\": \".\"}"
728
+ },
729
+ "type": "function",
730
+ "id": "20d04369-3efb-4158-bfa3-e7a9088ae609"
731
+ }
732
+ ],
733
+ "tool_name": "search_files",
734
+ "parsed_args": {
735
+ "pattern": "HERMES_PARSE_TEXT_TOOL_CALLS",
736
+ "path": "."
737
+ },
738
+ "text_tool_leak": false,
739
+ "usage": {
740
+ "prompt_tokens": 3927,
741
+ "completion_tokens": 25,
742
+ "total_tokens": 3952,
743
+ "prompt_tokens_details": {
744
+ "cached_tokens": 3907
745
+ }
746
+ }
747
+ },
748
+ {
749
+ "name": "b_file_write",
750
+ "suite": "suite_b",
751
+ "category": "file",
752
+ "passed": true,
753
+ "failure": null,
754
+ "elapsed_s": 0.316,
755
+ "finish_reason": "tool_calls",
756
+ "content": "",
757
+ "tool_calls": [
758
+ {
759
+ "function": {
760
+ "name": "write_file",
761
+ "arguments": "{\"path\": \"/tmp/hermes_fixed_schema_probe.txt\", \"content\": \"fixed schema\"}"
762
+ },
763
+ "type": "function",
764
+ "id": "7f115d66-8783-4688-80c4-d065440d7f77"
765
+ }
766
+ ],
767
+ "tool_name": "write_file",
768
+ "parsed_args": {
769
+ "path": "/tmp/hermes_fixed_schema_probe.txt",
770
+ "content": "fixed schema"
771
+ },
772
+ "text_tool_leak": false,
773
+ "usage": {
774
+ "prompt_tokens": 3927,
775
+ "completion_tokens": 26,
776
+ "total_tokens": 3953,
777
+ "prompt_tokens_details": {
778
+ "cached_tokens": 3907
779
+ }
780
+ }
781
+ },
782
+ {
783
+ "name": "b_no_tool_command",
784
+ "suite": "suite_b",
785
+ "category": "no_tool",
786
+ "passed": true,
787
+ "failure": null,
788
+ "elapsed_s": 0.149,
789
+ "finish_reason": "stop",
790
+ "content": "The command is `pwd`.",
791
+ "tool_calls": [],
792
+ "tool_name": null,
793
+ "parsed_args": {},
794
+ "text_tool_leak": false,
795
+ "usage": {
796
+ "prompt_tokens": 3923,
797
+ "completion_tokens": 7,
798
+ "total_tokens": 3930,
799
+ "prompt_tokens_details": {
800
+ "cached_tokens": 3907
801
+ }
802
+ }
803
+ },
804
+ {
805
+ "name": "b_no_tool_browser",
806
+ "suite": "suite_b",
807
+ "category": "no_tool",
808
+ "passed": true,
809
+ "failure": null,
810
+ "elapsed_s": 0.213,
811
+ "finish_reason": "stop",
812
+ "content": "A browser is an application for navigating and interacting with web pages.",
813
+ "tool_calls": [],
814
+ "tool_name": null,
815
+ "parsed_args": {},
816
+ "text_tool_leak": false,
817
+ "usage": {
818
+ "prompt_tokens": 3920,
819
+ "completion_tokens": 14,
820
+ "total_tokens": 3934,
821
+ "prompt_tokens_details": {
822
+ "cached_tokens": 3907
823
+ }
824
+ }
825
+ },
826
+ {
827
+ "name": "h_weather_san_antonio",
828
+ "suite": "holdout",
829
+ "category": "browser",
830
+ "passed": true,
831
+ "failure": null,
832
+ "elapsed_s": 0.329,
833
+ "finish_reason": "tool_calls",
834
+ "content": "",
835
+ "tool_calls": [
836
+ {
837
+ "function": {
838
+ "name": "browser_navigate",
839
+ "arguments": "{\"url\": \"https://www.google.com/search?q=San+Antonio+weather\"}"
840
+ },
841
+ "type": "function",
842
+ "id": "3908e6db-1c50-4602-a6ed-da290d83156c"
843
+ }
844
+ ],
845
+ "tool_name": "browser_navigate",
846
+ "parsed_args": {
847
+ "url": "https://www.google.com/search?q=San+Antonio+weather"
848
+ },
849
+ "text_tool_leak": false,
850
+ "usage": {
851
+ "prompt_tokens": 3922,
852
+ "completion_tokens": 28,
853
+ "total_tokens": 3950,
854
+ "prompt_tokens_details": {
855
+ "cached_tokens": 3907
856
+ }
857
+ }
858
+ },
859
+ {
860
+ "name": "h_current_docs",
861
+ "suite": "holdout",
862
+ "category": "browser",
863
+ "passed": true,
864
+ "failure": null,
865
+ "elapsed_s": 0.398,
866
+ "finish_reason": "tool_calls",
867
+ "content": "",
868
+ "tool_calls": [
869
+ {
870
+ "function": {
871
+ "name": "browser_navigate",
872
+ "arguments": "{\"url\": \"https://www.google.com/search?q=current+docs+mlx_lm+server+tool+calling\"}"
873
+ },
874
+ "type": "function",
875
+ "id": "c98f9e3a-c1df-4f53-93a7-2a08f22f3725"
876
+ }
877
+ ],
878
+ "tool_name": "browser_navigate",
879
+ "parsed_args": {
880
+ "url": "https://www.google.com/search?q=current+docs+mlx_lm+server+tool+calling"
881
+ },
882
+ "text_tool_leak": false,
883
+ "usage": {
884
+ "prompt_tokens": 3924,
885
+ "completion_tokens": 37,
886
+ "total_tokens": 3961,
887
+ "prompt_tokens_details": {
888
+ "cached_tokens": 3907
889
+ }
890
+ }
891
+ },
892
+ {
893
+ "name": "h_online_latest",
894
+ "suite": "holdout",
895
+ "category": "browser",
896
+ "passed": true,
897
+ "failure": null,
898
+ "elapsed_s": 0.412,
899
+ "finish_reason": "tool_calls",
900
+ "content": "",
901
+ "tool_calls": [
902
+ {
903
+ "function": {
904
+ "name": "browser_navigate",
905
+ "arguments": "{\"url\": \"https://www.google.com/search?q=latest+Liquid+AI+LFM2.5+GUF+info\"}"
906
+ },
907
+ "type": "function",
908
+ "id": "3fa7497b-733d-4722-af71-0f0c0949e071"
909
+ }
910
+ ],
911
+ "tool_name": "browser_navigate",
912
+ "parsed_args": {
913
+ "url": "https://www.google.com/search?q=latest+Liquid+AI+LFM2.5+GUF+info"
914
+ },
915
+ "text_tool_leak": false,
916
+ "usage": {
917
+ "prompt_tokens": 3930,
918
+ "completion_tokens": 37,
919
+ "total_tokens": 3967,
920
+ "prompt_tokens_details": {
921
+ "cached_tokens": 3907
922
+ }
923
+ }
924
+ },
925
+ {
926
+ "name": "h_noaa",
927
+ "suite": "holdout",
928
+ "category": "browser",
929
+ "passed": true,
930
+ "failure": null,
931
+ "elapsed_s": 1.416,
932
+ "finish_reason": "tool_calls",
933
+ "content": "",
934
+ "tool_calls": [
935
+ {
936
+ "function": {
937
+ "name": "browser_navigate",
938
+ "arguments": "{\"url\": \"https://www.google.com/search?q=NOAA+forecast+Austin+Texas\"}"
939
+ },
940
+ "type": "function",
941
+ "id": "2d309477-c21b-455b-847a-e48ca93a58b0"
942
+ }
943
+ ],
944
+ "tool_name": "browser_navigate",
945
+ "parsed_args": {
946
+ "url": "https://www.google.com/search?q=NOAA+forecast+Austin+Texas"
947
+ },
948
+ "text_tool_leak": false,
949
+ "usage": {
950
+ "prompt_tokens": 3926,
951
+ "completion_tokens": 32,
952
+ "total_tokens": 3958,
953
+ "prompt_tokens_details": {
954
+ "cached_tokens": 0
955
+ }
956
+ }
957
+ },
958
+ {
959
+ "name": "h_terminal_date",
960
+ "suite": "holdout",
961
+ "category": "terminal",
962
+ "passed": true,
963
+ "failure": null,
964
+ "elapsed_s": 1.232,
965
+ "finish_reason": "tool_calls",
966
+ "content": "",
967
+ "tool_calls": [
968
+ {
969
+ "function": {
970
+ "name": "terminal",
971
+ "arguments": "{\"command\": \"date\"}"
972
+ },
973
+ "type": "function",
974
+ "id": "fda1379b-9ef9-4372-a6b8-6466eb61affa"
975
+ }
976
+ ],
977
+ "tool_name": "terminal",
978
+ "parsed_args": {
979
+ "command": "date"
980
+ },
981
+ "text_tool_leak": false,
982
+ "usage": {
983
+ "prompt_tokens": 3917,
984
+ "completion_tokens": 11,
985
+ "total_tokens": 3928,
986
+ "prompt_tokens_details": {
987
+ "cached_tokens": 0
988
+ }
989
+ }
990
+ },
991
+ {
992
+ "name": "h_terminal_pwd_plain",
993
+ "suite": "holdout",
994
+ "category": "terminal",
995
+ "passed": true,
996
+ "failure": null,
997
+ "elapsed_s": 0.176,
998
+ "finish_reason": "tool_calls",
999
+ "content": "",
1000
+ "tool_calls": [
1001
+ {
1002
+ "function": {
1003
+ "name": "terminal",
1004
+ "arguments": "{\"command\": \"pwd\"}"
1005
+ },
1006
+ "type": "function",
1007
+ "id": "3688698d-0b94-42d3-ad6c-a33182950200"
1008
+ }
1009
+ ],
1010
+ "tool_name": "terminal",
1011
+ "parsed_args": {
1012
+ "command": "pwd"
1013
+ },
1014
+ "text_tool_leak": false,
1015
+ "usage": {
1016
+ "prompt_tokens": 3919,
1017
+ "completion_tokens": 11,
1018
+ "total_tokens": 3930,
1019
+ "prompt_tokens_details": {
1020
+ "cached_tokens": 3907
1021
+ }
1022
+ }
1023
+ },
1024
+ {
1025
+ "name": "h_terminal_echo",
1026
+ "suite": "holdout",
1027
+ "category": "terminal",
1028
+ "passed": true,
1029
+ "failure": null,
1030
+ "elapsed_s": 0.222,
1031
+ "finish_reason": "tool_calls",
1032
+ "content": "",
1033
+ "tool_calls": [
1034
+ {
1035
+ "function": {
1036
+ "name": "terminal",
1037
+ "arguments": "{\"command\": \"echo fixed-hermes\"}"
1038
+ },
1039
+ "type": "function",
1040
+ "id": "444abb73-8efb-4dc9-8147-77c98818428b"
1041
+ }
1042
+ ],
1043
+ "tool_name": "terminal",
1044
+ "parsed_args": {
1045
+ "command": "echo fixed-hermes"
1046
+ },
1047
+ "text_tool_leak": false,
1048
+ "usage": {
1049
+ "prompt_tokens": 3921,
1050
+ "completion_tokens": 15,
1051
+ "total_tokens": 3936,
1052
+ "prompt_tokens_details": {
1053
+ "cached_tokens": 3907
1054
+ }
1055
+ }
1056
+ },
1057
+ {
1058
+ "name": "h_terminal_files",
1059
+ "suite": "holdout",
1060
+ "category": "terminal",
1061
+ "passed": true,
1062
+ "failure": null,
1063
+ "elapsed_s": 0.201,
1064
+ "finish_reason": "tool_calls",
1065
+ "content": "",
1066
+ "tool_calls": [
1067
+ {
1068
+ "function": {
1069
+ "name": "terminal",
1070
+ "arguments": "{\"command\": \"ls\"}"
1071
+ },
1072
+ "type": "function",
1073
+ "id": "a421c314-81d1-4fbd-b018-f4ee6d6fe1cc"
1074
+ }
1075
+ ],
1076
+ "tool_name": "terminal",
1077
+ "parsed_args": {
1078
+ "command": "ls"
1079
+ },
1080
+ "text_tool_leak": false,
1081
+ "usage": {
1082
+ "prompt_tokens": 3919,
1083
+ "completion_tokens": 11,
1084
+ "total_tokens": 3930,
1085
+ "prompt_tokens_details": {
1086
+ "cached_tokens": 3907
1087
+ }
1088
+ }
1089
+ },
1090
+ {
1091
+ "name": "h_read_absolute",
1092
+ "suite": "holdout",
1093
+ "category": "file",
1094
+ "passed": true,
1095
+ "failure": null,
1096
+ "elapsed_s": 0.263,
1097
+ "finish_reason": "tool_calls",
1098
+ "content": "",
1099
+ "tool_calls": [
1100
+ {
1101
+ "function": {
1102
+ "name": "read_file",
1103
+ "arguments": "{\"path\": \"/tmp/hermes_eval_marker.txt\"}"
1104
+ },
1105
+ "type": "function",
1106
+ "id": "0416ab2f-256f-49e2-be1c-e1451448ca49"
1107
+ }
1108
+ ],
1109
+ "tool_name": "read_file",
1110
+ "parsed_args": {
1111
+ "path": "/tmp/hermes_eval_marker.txt"
1112
+ },
1113
+ "text_tool_leak": false,
1114
+ "usage": {
1115
+ "prompt_tokens": 3925,
1116
+ "completion_tokens": 20,
1117
+ "total_tokens": 3945,
1118
+ "prompt_tokens_details": {
1119
+ "cached_tokens": 3907
1120
+ }
1121
+ }
1122
+ },
1123
+ {
1124
+ "name": "h_search_local",
1125
+ "suite": "holdout",
1126
+ "category": "file",
1127
+ "passed": true,
1128
+ "failure": null,
1129
+ "elapsed_s": 0.287,
1130
+ "finish_reason": "tool_calls",
1131
+ "content": "",
1132
+ "tool_calls": [
1133
+ {
1134
+ "function": {
1135
+ "name": "search_files",
1136
+ "arguments": "{\"pattern\": \"iter07_structured_tool_calls\", \"path\": \".\"}"
1137
+ },
1138
+ "type": "function",
1139
+ "id": "f2e2ed41-1442-44bd-aeae-2748632e4ab1"
1140
+ }
1141
+ ],
1142
+ "tool_name": "search_files",
1143
+ "parsed_args": {
1144
+ "pattern": "iter07_structured_tool_calls",
1145
+ "path": "."
1146
+ },
1147
+ "text_tool_leak": false,
1148
+ "usage": {
1149
+ "prompt_tokens": 3925,
1150
+ "completion_tokens": 23,
1151
+ "total_tokens": 3948,
1152
+ "prompt_tokens_details": {
1153
+ "cached_tokens": 3907
1154
+ }
1155
+ }
1156
+ },
1157
+ {
1158
+ "name": "h_search_repo_not_web",
1159
+ "suite": "holdout",
1160
+ "category": "file",
1161
+ "passed": true,
1162
+ "failure": null,
1163
+ "elapsed_s": 0.24,
1164
+ "finish_reason": "tool_calls",
1165
+ "content": "",
1166
+ "tool_calls": [
1167
+ {
1168
+ "function": {
1169
+ "name": "search_files",
1170
+ "arguments": "{\"pattern\": \"browser_snapshot\", \"path\": \".\"}"
1171
+ },
1172
+ "type": "function",
1173
+ "id": "41127389-9e2d-4b49-bab7-b8120ac0dd75"
1174
+ }
1175
+ ],
1176
+ "tool_name": "search_files",
1177
+ "parsed_args": {
1178
+ "pattern": "browser_snapshot",
1179
+ "path": "."
1180
+ },
1181
+ "text_tool_leak": false,
1182
+ "usage": {
1183
+ "prompt_tokens": 3922,
1184
+ "completion_tokens": 17,
1185
+ "total_tokens": 3939,
1186
+ "prompt_tokens_details": {
1187
+ "cached_tokens": 3907
1188
+ }
1189
+ }
1190
+ },
1191
+ {
1192
+ "name": "h_write_absolute",
1193
+ "suite": "holdout",
1194
+ "category": "file",
1195
+ "passed": true,
1196
+ "failure": null,
1197
+ "elapsed_s": 0.291,
1198
+ "finish_reason": "tool_calls",
1199
+ "content": "",
1200
+ "tool_calls": [
1201
+ {
1202
+ "function": {
1203
+ "name": "write_file",
1204
+ "arguments": "{\"path\": \"/tmp/hermes_holdout.txt\", \"content\": \"holdout ok\"}"
1205
+ },
1206
+ "type": "function",
1207
+ "id": "25dea537-0933-47a5-830d-3105f5117acd"
1208
+ }
1209
+ ],
1210
+ "tool_name": "write_file",
1211
+ "parsed_args": {
1212
+ "path": "/tmp/hermes_holdout.txt",
1213
+ "content": "holdout ok"
1214
+ },
1215
+ "text_tool_leak": false,
1216
+ "usage": {
1217
+ "prompt_tokens": 3926,
1218
+ "completion_tokens": 25,
1219
+ "total_tokens": 3951,
1220
+ "prompt_tokens_details": {
1221
+ "cached_tokens": 3907
1222
+ }
1223
+ }
1224
+ },
1225
+ {
1226
+ "name": "h_no_tool_hi",
1227
+ "suite": "holdout",
1228
+ "category": "no_tool",
1229
+ "passed": true,
1230
+ "failure": null,
1231
+ "elapsed_s": 0.103,
1232
+ "finish_reason": "stop",
1233
+ "content": "Hello!",
1234
+ "tool_calls": [],
1235
+ "tool_name": null,
1236
+ "parsed_args": {},
1237
+ "text_tool_leak": false,
1238
+ "usage": {
1239
+ "prompt_tokens": 3914,
1240
+ "completion_tokens": 3,
1241
+ "total_tokens": 3917,
1242
+ "prompt_tokens_details": {
1243
+ "cached_tokens": 3907
1244
+ }
1245
+ }
1246
+ },
1247
+ {
1248
+ "name": "h_no_tool_explain",
1249
+ "suite": "holdout",
1250
+ "category": "no_tool",
1251
+ "passed": true,
1252
+ "failure": null,
1253
+ "elapsed_s": 0.305,
1254
+ "finish_reason": "stop",
1255
+ "content": "A browser is an application for navigating and interacting with web pages, while a terminal is an application for running shell commands.",
1256
+ "tool_calls": [],
1257
+ "tool_name": null,
1258
+ "parsed_args": {},
1259
+ "text_tool_leak": false,
1260
+ "usage": {
1261
+ "prompt_tokens": 3923,
1262
+ "completion_tokens": 25,
1263
+ "total_tokens": 3948,
1264
+ "prompt_tokens_details": {
1265
+ "cached_tokens": 3907
1266
+ }
1267
+ }
1268
+ },
1269
+ {
1270
+ "name": "h_no_tool_no_run",
1271
+ "suite": "holdout",
1272
+ "category": "no_tool",
1273
+ "passed": true,
1274
+ "failure": null,
1275
+ "elapsed_s": 0.156,
1276
+ "finish_reason": "stop",
1277
+ "content": "The command is `whoami`.",
1278
+ "tool_calls": [],
1279
+ "tool_name": null,
1280
+ "parsed_args": {},
1281
+ "text_tool_leak": false,
1282
+ "usage": {
1283
+ "prompt_tokens": 3923,
1284
+ "completion_tokens": 8,
1285
+ "total_tokens": 3931,
1286
+ "prompt_tokens_details": {
1287
+ "cached_tokens": 3907
1288
+ }
1289
+ }
1290
+ },
1291
+ {
1292
+ "name": "h_no_tool_sentence",
1293
+ "suite": "holdout",
1294
+ "category": "no_tool",
1295
+ "passed": true,
1296
+ "failure": null,
1297
+ "elapsed_s": 0.147,
1298
+ "finish_reason": "stop",
1299
+ "content": "The file was found.",
1300
+ "tool_calls": [],
1301
+ "tool_name": null,
1302
+ "parsed_args": {},
1303
+ "text_tool_leak": false,
1304
+ "usage": {
1305
+ "prompt_tokens": 3919,
1306
+ "completion_tokens": 6,
1307
+ "total_tokens": 3925,
1308
+ "prompt_tokens_details": {
1309
+ "cached_tokens": 3907
1310
+ }
1311
+ }
1312
+ },
1313
+ {
1314
+ "name": "h_final_file",
1315
+ "suite": "holdout",
1316
+ "category": "finalization",
1317
+ "passed": true,
1318
+ "failure": null,
1319
+ "elapsed_s": 1.154,
1320
+ "finish_reason": "stop",
1321
+ "content": "marker: holdout-fixed",
1322
+ "tool_calls": [],
1323
+ "tool_name": null,
1324
+ "parsed_args": {},
1325
+ "text_tool_leak": false,
1326
+ "usage": {
1327
+ "prompt_tokens": 3967,
1328
+ "completion_tokens": 7,
1329
+ "total_tokens": 3974,
1330
+ "prompt_tokens_details": {
1331
+ "cached_tokens": 0
1332
+ }
1333
+ }
1334
+ },
1335
+ {
1336
+ "name": "h_final_terminal",
1337
+ "suite": "holdout",
1338
+ "category": "finalization",
1339
+ "passed": true,
1340
+ "failure": null,
1341
+ "elapsed_s": 1.141,
1342
+ "finish_reason": "stop",
1343
+ "content": "fixed-hermes",
1344
+ "tool_calls": [],
1345
+ "tool_name": null,
1346
+ "parsed_args": {},
1347
+ "text_tool_leak": false,
1348
+ "usage": {
1349
+ "prompt_tokens": 3956,
1350
+ "completion_tokens": 5,
1351
+ "total_tokens": 3961,
1352
+ "prompt_tokens_details": {
1353
+ "cached_tokens": 0
1354
+ }
1355
+ }
1356
+ }
1357
+ ]
1358
+ }
gguf/UD-Q4_K_XL_APPROX.tensor-types.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ token_embd=q6_k
2
+ output=q6_k
3
+ attn_q=q6_k
4
+ attn_k=q6_k
5
+ attn_v=q5_k
6
+ attn_output=q5_k
7
+ gate=q8_0
8
+ router=q8_0
9
+ norm=f16
10
+ ffn=q4_k
gguf/UD-Q5_K_XL_APPROX.tensor-types.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ token_embd=q8_0
2
+ output=q8_0
3
+ attn=q6_k
4
+ gate=q8_0
5
+ router=q8_0
6
+ norm=f16
7
+ ffn=q5_k
gguf/UD-Q6_K_XL_APPROX.tensor-types.txt ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ token_embd=q8_0
2
+ output=q8_0
3
+ attn_q=q8_0
4
+ attn_k=q8_0
5
+ attn_v=q8_0
6
+ attn_output=q8_0
7
+ gate=q8_0
8
+ router=q8_0
9
+ norm=f16
10
+ ffn=q6_k
gguf/UD-Q8_K_XL_APPROX.tensor-types.txt ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ token_embd=f16
2
+ output=f16
3
+ attn=q8_0
4
+ gate=q8_0
5
+ router=q8_0
6
+ norm=f16
7
+ ffn=q8_0
gguf/xl_quant_plan.json ADDED
@@ -0,0 +1,269 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "note": "Approximate Unsloth Dynamic XL policies for stock llama.cpp. These are not byte-identical Unsloth Dynamic 2.0 quants.",
3
+ "bf16_parent": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/bf16/LFM-2.5-8B-1B-hermes-ft-BF16.gguf",
4
+ "imatrix": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/calibration/hermes_tool_router_imatrix.gguf",
5
+ "commands": [
6
+ {
7
+ "name": "UD-Q8_K_XL_APPROX",
8
+ "base_quant": "Q8_0",
9
+ "target_gb": 9.34,
10
+ "tensor_type_file": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/xl_quant_policies/UD-Q8_K_XL_APPROX.tensor-types.txt",
11
+ "output": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/xl_quant_policies/LFM-2.5-8B-1B-hermes-ft-Q8_K_XL_approx.gguf",
12
+ "command": [
13
+ "llama-quantize",
14
+ "--tensor-type-file",
15
+ "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/xl_quant_policies/UD-Q8_K_XL_APPROX.tensor-types.txt",
16
+ "--imatrix",
17
+ "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/calibration/hermes_tool_router_imatrix.gguf",
18
+ "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/bf16/LFM-2.5-8B-1B-hermes-ft-BF16.gguf",
19
+ "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/xl_quant_policies/LFM-2.5-8B-1B-hermes-ft-Q8_K_XL_approx.gguf",
20
+ "Q8_0"
21
+ ],
22
+ "policy": {
23
+ "base": "Q8_0",
24
+ "target_gb": 9.34,
25
+ "rules": [
26
+ {
27
+ "match": "token_embd",
28
+ "type": "F16",
29
+ "reason": "embedding/tool-token sensitivity"
30
+ },
31
+ {
32
+ "match": "output",
33
+ "type": "F16",
34
+ "reason": "logit head sensitivity"
35
+ },
36
+ {
37
+ "match": "attn",
38
+ "type": "Q8_0",
39
+ "reason": "attention path retained high precision"
40
+ },
41
+ {
42
+ "match": "gate",
43
+ "type": "Q8_0",
44
+ "reason": "router/gate routing sensitivity"
45
+ },
46
+ {
47
+ "match": "router",
48
+ "type": "Q8_0",
49
+ "reason": "router sensitivity"
50
+ },
51
+ {
52
+ "match": "norm",
53
+ "type": "F16",
54
+ "reason": "normalization stability"
55
+ },
56
+ {
57
+ "match": "ffn",
58
+ "type": "Q8_0",
59
+ "reason": "expert/base MLP storage"
60
+ }
61
+ ]
62
+ }
63
+ },
64
+ {
65
+ "name": "UD-Q6_K_XL_APPROX",
66
+ "base_quant": "Q6_K",
67
+ "target_gb": 7.74,
68
+ "tensor_type_file": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/xl_quant_policies/UD-Q6_K_XL_APPROX.tensor-types.txt",
69
+ "output": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/xl_quant_policies/LFM-2.5-8B-1B-hermes-ft-Q6_K_XL_approx.gguf",
70
+ "command": [
71
+ "llama-quantize",
72
+ "--tensor-type-file",
73
+ "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/xl_quant_policies/UD-Q6_K_XL_APPROX.tensor-types.txt",
74
+ "--imatrix",
75
+ "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/calibration/hermes_tool_router_imatrix.gguf",
76
+ "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/bf16/LFM-2.5-8B-1B-hermes-ft-BF16.gguf",
77
+ "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/xl_quant_policies/LFM-2.5-8B-1B-hermes-ft-Q6_K_XL_approx.gguf",
78
+ "Q6_K"
79
+ ],
80
+ "policy": {
81
+ "base": "Q6_K",
82
+ "target_gb": 7.74,
83
+ "rules": [
84
+ {
85
+ "match": "token_embd",
86
+ "type": "Q8_0",
87
+ "reason": "embedding/tool-token sensitivity"
88
+ },
89
+ {
90
+ "match": "output",
91
+ "type": "Q8_0",
92
+ "reason": "logit head sensitivity"
93
+ },
94
+ {
95
+ "match": "attn_q",
96
+ "type": "Q8_0",
97
+ "reason": "tool-token attention sensitivity"
98
+ },
99
+ {
100
+ "match": "attn_k",
101
+ "type": "Q8_0",
102
+ "reason": "tool-token attention sensitivity"
103
+ },
104
+ {
105
+ "match": "attn_v",
106
+ "type": "Q8_0",
107
+ "reason": "tool-token attention sensitivity"
108
+ },
109
+ {
110
+ "match": "attn_output",
111
+ "type": "Q8_0",
112
+ "reason": "attention output sensitivity"
113
+ },
114
+ {
115
+ "match": "gate",
116
+ "type": "Q8_0",
117
+ "reason": "router/gate routing sensitivity"
118
+ },
119
+ {
120
+ "match": "router",
121
+ "type": "Q8_0",
122
+ "reason": "router sensitivity"
123
+ },
124
+ {
125
+ "match": "norm",
126
+ "type": "F16",
127
+ "reason": "normalization stability"
128
+ },
129
+ {
130
+ "match": "ffn",
131
+ "type": "Q6_K",
132
+ "reason": "default expert/base MLP target"
133
+ }
134
+ ]
135
+ }
136
+ },
137
+ {
138
+ "name": "UD-Q5_K_XL_APPROX",
139
+ "base_quant": "Q5_K_M",
140
+ "target_gb": 6.39,
141
+ "tensor_type_file": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/xl_quant_policies/UD-Q5_K_XL_APPROX.tensor-types.txt",
142
+ "output": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/xl_quant_policies/LFM-2.5-8B-1B-hermes-ft-Q5_K_XL_approx.gguf",
143
+ "command": [
144
+ "llama-quantize",
145
+ "--tensor-type-file",
146
+ "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/xl_quant_policies/UD-Q5_K_XL_APPROX.tensor-types.txt",
147
+ "--imatrix",
148
+ "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/calibration/hermes_tool_router_imatrix.gguf",
149
+ "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/bf16/LFM-2.5-8B-1B-hermes-ft-BF16.gguf",
150
+ "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/xl_quant_policies/LFM-2.5-8B-1B-hermes-ft-Q5_K_XL_approx.gguf",
151
+ "Q5_K_M"
152
+ ],
153
+ "policy": {
154
+ "base": "Q5_K_M",
155
+ "target_gb": 6.39,
156
+ "rules": [
157
+ {
158
+ "match": "token_embd",
159
+ "type": "Q8_0",
160
+ "reason": "embedding/tool-token sensitivity"
161
+ },
162
+ {
163
+ "match": "output",
164
+ "type": "Q8_0",
165
+ "reason": "logit head sensitivity"
166
+ },
167
+ {
168
+ "match": "attn",
169
+ "type": "Q6_K",
170
+ "reason": "attention kept above base"
171
+ },
172
+ {
173
+ "match": "gate",
174
+ "type": "Q8_0",
175
+ "reason": "router/gate routing sensitivity"
176
+ },
177
+ {
178
+ "match": "router",
179
+ "type": "Q8_0",
180
+ "reason": "router sensitivity"
181
+ },
182
+ {
183
+ "match": "norm",
184
+ "type": "F16",
185
+ "reason": "normalization stability"
186
+ },
187
+ {
188
+ "match": "ffn",
189
+ "type": "Q5_K_M",
190
+ "reason": "default expert/base MLP target"
191
+ }
192
+ ]
193
+ }
194
+ },
195
+ {
196
+ "name": "UD-Q4_K_XL_APPROX",
197
+ "base_quant": "Q4_K_M",
198
+ "target_gb": 5.35,
199
+ "tensor_type_file": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/xl_quant_policies/UD-Q4_K_XL_APPROX.tensor-types.txt",
200
+ "output": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/xl_quant_policies/LFM-2.5-8B-1B-hermes-ft-Q4_K_XL_approx.gguf",
201
+ "command": [
202
+ "llama-quantize",
203
+ "--tensor-type-file",
204
+ "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/xl_quant_policies/UD-Q4_K_XL_APPROX.tensor-types.txt",
205
+ "--imatrix",
206
+ "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/calibration/hermes_tool_router_imatrix.gguf",
207
+ "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/bf16/LFM-2.5-8B-1B-hermes-ft-BF16.gguf",
208
+ "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/xl_quant_policies/LFM-2.5-8B-1B-hermes-ft-Q4_K_XL_approx.gguf",
209
+ "Q4_K_M"
210
+ ],
211
+ "policy": {
212
+ "base": "Q4_K_M",
213
+ "target_gb": 5.35,
214
+ "rules": [
215
+ {
216
+ "match": "token_embd",
217
+ "type": "Q6_K",
218
+ "reason": "embedding/tool-token sensitivity"
219
+ },
220
+ {
221
+ "match": "output",
222
+ "type": "Q6_K",
223
+ "reason": "logit head sensitivity"
224
+ },
225
+ {
226
+ "match": "attn_q",
227
+ "type": "Q6_K",
228
+ "reason": "attention query sensitivity"
229
+ },
230
+ {
231
+ "match": "attn_k",
232
+ "type": "Q6_K",
233
+ "reason": "attention key sensitivity"
234
+ },
235
+ {
236
+ "match": "attn_v",
237
+ "type": "Q5_K_M",
238
+ "reason": "attention value above base"
239
+ },
240
+ {
241
+ "match": "attn_output",
242
+ "type": "Q5_K_M",
243
+ "reason": "attention output above base"
244
+ },
245
+ {
246
+ "match": "gate",
247
+ "type": "Q8_0",
248
+ "reason": "router/gate routing sensitivity"
249
+ },
250
+ {
251
+ "match": "router",
252
+ "type": "Q8_0",
253
+ "reason": "router sensitivity"
254
+ },
255
+ {
256
+ "match": "norm",
257
+ "type": "F16",
258
+ "reason": "normalization stability"
259
+ },
260
+ {
261
+ "match": "ffn",
262
+ "type": "Q4_K_M",
263
+ "reason": "default expert/base MLP target"
264
+ }
265
+ ]
266
+ }
267
+ }
268
+ ]
269
+ }
logs/bf16_llama_cli_load_smoke.log ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ --no-conversation is not supported by llama-cli
2
+ please use llama-completion instead
3
+
4
+ Loading model... |-\|/-\|/ 
5
+
6
+
7
+ ▄▄ ▄▄
8
+ ██ ██
9
+ ██ ██ ▀▀█▄ ███▄███▄ ▀▀█▄ ▄████ ████▄ ████▄
10
+ ██ ██ ▄█▀██ ██ ██ ██ ▄█▀██ ██ ██ ██ ██ ██
11
+ ██ ██ ▀█▄██ ██ ██ ██ ▀█▄██ ██ ▀████ ████▀ ████▀
12
+ ██ ██
13
+ ▀▀ ▀▀
14
+
15
+ build : b1-399739d
16
+ model : LFM-2.5-8B-1B-hermes-ft-BF16.gguf
17
+ modalities : text
18
+
19
+ available commands:
20
+ /exit or Ctrl+C stop or exit
21
+ /regen regenerate the last response
22
+ /clear clear the chat history
23
+ /read <file> add a text file
24
+ /glob <pattern> add text files using globbing pattern
25
+
26
+
27
+ > Hello
28
+
29
+ | Hello!
30
+
31
+ [ Prompt: 14.9 t/s | Generation: 18.7 t/s ]
32
+
33
+ Exiting...
34
+ 2.09 real 11.69 user 1.05 sys
35
+ 16949706752 maximum resident set size
36
+ 0 average shared memory size
37
+ 0 average unshared data size
38
+ 0 average unshared stack size
39
+ 1045330 page reclaims
40
+ 24 page faults
41
+ 0 swaps
42
+ 0 block input operations
43
+ 0 block output operations
44
+ 0 messages sent
45
+ 0 messages received
46
+ 0 signals received
47
+ 2 voluntary context switches
48
+ 890 involuntary context switches
49
+ 82676382461 instructions retired
50
+ 49736947406 cycles elapsed
51
+ 93581960 peak memory footprint
logs/imatrix_squeeze_fix.log ADDED
@@ -0,0 +1,160 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ 0.00.045.004 I common_init_result: fitting params to device memory ...
2
+ 0.00.045.008 I common_init_result: (for bugs during this step try to reproduce them with -fit off, or provide --verbose logs if the bug only occurs with -fit on)
3
+ 0.00.807.205 W llama_context: n_ctx_seq (4096) < n_ctx_train (128000) -- the full capacity of the model will not be utilized
4
+ 0.00.817.570 I
5
+ 0.00.817.587 I system_info: n_threads = 12 (n_threads_batch = 12) / 16 | MTL : EMBED_LIBRARY = 1 | CPU : NEON = 1 | ARM_FMA = 1 | FP16_VA = 1 | MATMUL_INT8 = 1 | DOTPROD = 1 | SME = 1 | ACCELERATE = 1 | REPACK = 1 |
6
+ 0.00.817.588 I compute_imatrix: tokenizing the input ..
7
+ 0.00.933.415 I compute_imatrix: tokenization took 115.824 ms
8
+ 0.00.933.445 I compute_imatrix: computing over 32 chunks, n_ctx=4096, batch_size=2048, n_seq=1
9
+ 0.03.789.643 I compute_imatrix: 2.86 seconds per pass - ETA 1.52 minutes
10
+ 0.28.540.322 I
11
+ 0.28.540.325 W save_imatrix: entry ' blk.21.ffn_up_exps.weight' has partial data (96.88%)
12
+ 0.28.540.325 W save_imatrix: entry ' blk.21.ffn_gate_exps.weight' has partial data (96.88%)
13
+ 0.28.540.326 W save_imatrix: entry ' blk.20.ffn_down_exps.weight' has partial data (96.88%)
14
+ 0.28.540.327 W save_imatrix: entry ' blk.20.ffn_up_exps.weight' has partial data (96.88%)
15
+ 0.28.540.327 W save_imatrix: entry ' blk.19.ffn_gate_exps.weight' has partial data (96.88%)
16
+ 0.28.540.327 W save_imatrix: entry ' blk.18.ffn_up_exps.weight' has partial data (96.88%)
17
+ 0.28.540.328 W save_imatrix: entry ' blk.21.ffn_down_exps.weight' has partial data (96.88%)
18
+ 0.28.540.328 W save_imatrix: entry ' blk.18.ffn_gate_exps.weight' has partial data (96.88%)
19
+ 0.28.540.329 W save_imatrix: entry ' blk.19.ffn_up_exps.weight' has partial data (96.88%)
20
+ 0.28.540.330 W save_imatrix: entry ' blk.15.ffn_down_exps.weight' has partial data (96.88%)
21
+ 0.28.540.330 W save_imatrix: entry ' blk.14.ffn_gate_exps.weight' has partial data (93.75%)
22
+ 0.28.540.331 W save_imatrix: entry ' blk.9.ffn_gate_exps.weight' has partial data (96.88%)
23
+ 0.28.540.332 W save_imatrix: entry ' blk.12.ffn_down_exps.weight' has partial data (96.88%)
24
+ 0.28.540.332 W save_imatrix: entry ' blk.11.ffn_gate_exps.weight' has partial data (96.88%)
25
+ 0.28.540.333 W save_imatrix: entry ' blk.15.ffn_gate_exps.weight' has partial data (96.88%)
26
+ 0.28.540.333 W save_imatrix: entry ' blk.10.ffn_down_exps.weight' has partial data (90.62%)
27
+ 0.28.540.333 W save_imatrix: entry ' blk.10.ffn_gate_exps.weight' has partial data (90.62%)
28
+ 0.28.540.334 W save_imatrix: entry ' blk.20.ffn_gate_exps.weight' has partial data (96.88%)
29
+ 0.28.540.334 W save_imatrix: entry ' blk.12.ffn_up_exps.weight' has partial data (96.88%)
30
+ 0.28.540.334 W save_imatrix: entry ' blk.11.ffn_down_exps.weight' has partial data (96.88%)
31
+ 0.28.540.336 W save_imatrix: entry ' blk.9.ffn_up_exps.weight' has partial data (96.88%)
32
+ 0.28.540.337 W save_imatrix: entry ' blk.15.ffn_up_exps.weight' has partial data (96.88%)
33
+ 0.28.540.337 W save_imatrix: entry ' blk.11.ffn_up_exps.weight' has partial data (96.88%)
34
+ 0.28.540.338 W save_imatrix: entry ' blk.14.ffn_down_exps.weight' has partial data (93.75%)
35
+ 0.28.540.338 W save_imatrix: entry ' blk.6.ffn_down_exps.weight' has partial data (90.62%)
36
+ 0.28.540.338 W save_imatrix: entry ' blk.6.ffn_gate_exps.weight' has partial data (90.62%)
37
+ 0.28.540.339 W save_imatrix: entry ' blk.6.ffn_up_exps.weight' has partial data (90.62%)
38
+ 0.28.540.341 W save_imatrix: entry ' blk.14.ffn_up_exps.weight' has partial data (93.75%)
39
+ 0.28.540.342 W save_imatrix: entry ' blk.18.ffn_down_exps.weight' has partial data (96.88%)
40
+ 0.28.540.343 W save_imatrix: entry ' blk.19.ffn_down_exps.weight' has partial data (96.88%)
41
+ 0.28.540.344 W save_imatrix: entry ' blk.10.ffn_up_exps.weight' has partial data (90.62%)
42
+ 0.28.540.345 W save_imatrix: entry ' blk.9.ffn_down_exps.weight' has partial data (96.88%)
43
+ 0.28.540.345 W save_imatrix: entry ' blk.12.ffn_gate_exps.weight' has partial data (96.88%)
44
+
45
+ 0.57.374.657 I
46
+ 0.57.374.662 W save_imatrix: entry ' blk.21.ffn_up_exps.weight' has partial data (96.88%)
47
+ 0.57.374.662 W save_imatrix: entry ' blk.21.ffn_gate_exps.weight' has partial data (96.88%)
48
+ 0.57.374.663 W save_imatrix: entry ' blk.20.ffn_down_exps.weight' has partial data (96.88%)
49
+ 0.57.374.664 W save_imatrix: entry ' blk.20.ffn_up_exps.weight' has partial data (96.88%)
50
+ 0.57.374.664 W save_imatrix: entry ' blk.19.ffn_gate_exps.weight' has partial data (96.88%)
51
+ 0.57.374.665 W save_imatrix: entry ' blk.18.ffn_up_exps.weight' has partial data (96.88%)
52
+ 0.57.374.665 W save_imatrix: entry ' blk.21.ffn_down_exps.weight' has partial data (96.88%)
53
+ 0.57.374.666 W save_imatrix: entry ' blk.18.ffn_gate_exps.weight' has partial data (96.88%)
54
+ 0.57.374.666 W save_imatrix: entry ' blk.19.ffn_up_exps.weight' has partial data (96.88%)
55
+ 0.57.374.667 W save_imatrix: entry ' blk.15.ffn_down_exps.weight' has partial data (96.88%)
56
+ 0.57.374.668 W save_imatrix: entry ' blk.14.ffn_gate_exps.weight' has partial data (93.75%)
57
+ 0.57.374.669 W save_imatrix: entry ' blk.9.ffn_gate_exps.weight' has partial data (96.88%)
58
+ 0.57.374.669 W save_imatrix: entry ' blk.12.ffn_down_exps.weight' has partial data (96.88%)
59
+ 0.57.374.670 W save_imatrix: entry ' blk.15.ffn_gate_exps.weight' has partial data (96.88%)
60
+ 0.57.374.670 W save_imatrix: entry ' blk.10.ffn_down_exps.weight' has partial data (90.62%)
61
+ 0.57.374.672 W save_imatrix: entry ' blk.10.ffn_gate_exps.weight' has partial data (90.62%)
62
+ 0.57.374.672 W save_imatrix: entry ' blk.20.ffn_gate_exps.weight' has partial data (96.88%)
63
+ 0.57.374.672 W save_imatrix: entry ' blk.12.ffn_up_exps.weight' has partial data (96.88%)
64
+ 0.57.374.673 W save_imatrix: entry ' blk.9.ffn_up_exps.weight' has partial data (96.88%)
65
+ 0.57.374.675 W save_imatrix: entry ' blk.15.ffn_up_exps.weight' has partial data (96.88%)
66
+ 0.57.374.676 W save_imatrix: entry ' blk.14.ffn_down_exps.weight' has partial data (93.75%)
67
+ 0.57.374.677 W save_imatrix: entry ' blk.6.ffn_down_exps.weight' has partial data (90.62%)
68
+ 0.57.374.677 W save_imatrix: entry ' blk.6.ffn_gate_exps.weight' has partial data (90.62%)
69
+ 0.57.374.677 W save_imatrix: entry ' blk.6.ffn_up_exps.weight' has partial data (90.62%)
70
+ 0.57.374.679 W save_imatrix: entry ' blk.14.ffn_up_exps.weight' has partial data (93.75%)
71
+ 0.57.374.679 W save_imatrix: entry ' blk.18.ffn_down_exps.weight' has partial data (96.88%)
72
+ 0.57.374.680 W save_imatrix: entry ' blk.19.ffn_down_exps.weight' has partial data (96.88%)
73
+ 0.57.374.681 W save_imatrix: entry ' blk.10.ffn_up_exps.weight' has partial data (90.62%)
74
+ 0.57.374.682 W save_imatrix: entry ' blk.9.ffn_down_exps.weight' has partial data (96.88%)
75
+ 0.57.374.682 W save_imatrix: entry ' blk.12.ffn_gate_exps.weight' has partial data (96.88%)
76
+
77
+ 1.26.132.348 I
78
+ 1.26.132.351 W save_imatrix: entry ' blk.21.ffn_up_exps.weight' has partial data (96.88%)
79
+ 1.26.132.351 W save_imatrix: entry ' blk.21.ffn_gate_exps.weight' has partial data (96.88%)
80
+ 1.26.132.352 W save_imatrix: entry ' blk.20.ffn_down_exps.weight' has partial data (96.88%)
81
+ 1.26.132.353 W save_imatrix: entry ' blk.20.ffn_up_exps.weight' has partial data (96.88%)
82
+ 1.26.132.353 W save_imatrix: entry ' blk.19.ffn_gate_exps.weight' has partial data (96.88%)
83
+ 1.26.132.354 W save_imatrix: entry ' blk.18.ffn_up_exps.weight' has partial data (96.88%)
84
+ 1.26.132.354 W save_imatrix: entry ' blk.21.ffn_down_exps.weight' has partial data (96.88%)
85
+ 1.26.132.354 W save_imatrix: entry ' blk.18.ffn_gate_exps.weight' has partial data (96.88%)
86
+ 1.26.132.355 W save_imatrix: entry ' blk.19.ffn_up_exps.weight' has partial data (96.88%)
87
+ 1.26.132.356 W save_imatrix: entry ' blk.15.ffn_down_exps.weight' has partial data (96.88%)
88
+ 1.26.132.357 W save_imatrix: entry ' blk.14.ffn_gate_exps.weight' has partial data (93.75%)
89
+ 1.26.132.357 W save_imatrix: entry ' blk.9.ffn_gate_exps.weight' has partial data (96.88%)
90
+ 1.26.132.358 W save_imatrix: entry ' blk.12.ffn_down_exps.weight' has partial data (96.88%)
91
+ 1.26.132.359 W save_imatrix: entry ' blk.15.ffn_gate_exps.weight' has partial data (96.88%)
92
+ 1.26.132.359 W save_imatrix: entry ' blk.10.ffn_down_exps.weight' has partial data (90.62%)
93
+ 1.26.132.359 W save_imatrix: entry ' blk.10.ffn_gate_exps.weight' has partial data (90.62%)
94
+ 1.26.132.359 W save_imatrix: entry ' blk.20.ffn_gate_exps.weight' has partial data (96.88%)
95
+ 1.26.132.360 W save_imatrix: entry ' blk.12.ffn_up_exps.weight' has partial data (96.88%)
96
+ 1.26.132.361 W save_imatrix: entry ' blk.9.ffn_up_exps.weight' has partial data (96.88%)
97
+ 1.26.132.361 W save_imatrix: entry ' blk.15.ffn_up_exps.weight' has partial data (96.88%)
98
+ 1.26.132.362 W save_imatrix: entry ' blk.14.ffn_down_exps.weight' has partial data (93.75%)
99
+ 1.26.132.362 W save_imatrix: entry ' blk.6.ffn_down_exps.weight' has partial data (90.62%)
100
+ 1.26.132.363 W save_imatrix: entry ' blk.6.ffn_gate_exps.weight' has partial data (90.62%)
101
+ 1.26.132.364 W save_imatrix: entry ' blk.6.ffn_up_exps.weight' has partial data (90.62%)
102
+ 1.26.132.367 W save_imatrix: entry ' blk.14.ffn_up_exps.weight' has partial data (93.75%)
103
+ 1.26.132.367 W save_imatrix: entry ' blk.18.ffn_down_exps.weight' has partial data (96.88%)
104
+ 1.26.132.368 W save_imatrix: entry ' blk.19.ffn_down_exps.weight' has partial data (96.88%)
105
+ 1.26.132.369 W save_imatrix: entry ' blk.10.ffn_up_exps.weight' has partial data (90.62%)
106
+ 1.26.132.369 W save_imatrix: entry ' blk.9.ffn_down_exps.weight' has partial data (96.88%)
107
+ 1.26.132.369 W save_imatrix: entry ' blk.12.ffn_gate_exps.weight' has partial data (96.88%)
108
+
109
+
110
+ 1.32.234.588 I
111
+ 1.32.234.590 W save_imatrix: entry ' blk.21.ffn_up_exps.weight' has partial data (96.88%)
112
+ 1.32.234.591 W save_imatrix: entry ' blk.21.ffn_gate_exps.weight' has partial data (96.88%)
113
+ 1.32.234.591 W save_imatrix: entry ' blk.20.ffn_down_exps.weight' has partial data (96.88%)
114
+ 1.32.234.592 W save_imatrix: entry ' blk.20.ffn_up_exps.weight' has partial data (96.88%)
115
+ 1.32.234.592 W save_imatrix: entry ' blk.19.ffn_gate_exps.weight' has partial data (96.88%)
116
+ 1.32.234.593 W save_imatrix: entry ' blk.18.ffn_up_exps.weight' has partial data (96.88%)
117
+ 1.32.234.593 W save_imatrix: entry ' blk.21.ffn_down_exps.weight' has partial data (96.88%)
118
+ 1.32.234.593 W save_imatrix: entry ' blk.18.ffn_gate_exps.weight' has partial data (96.88%)
119
+ 1.32.234.595 W save_imatrix: entry ' blk.19.ffn_up_exps.weight' has partial data (96.88%)
120
+ 1.32.234.596 W save_imatrix: entry ' blk.15.ffn_down_exps.weight' has partial data (96.88%)
121
+ 1.32.234.596 W save_imatrix: entry ' blk.14.ffn_gate_exps.weight' has partial data (96.88%)
122
+ 1.32.234.597 W save_imatrix: entry ' blk.9.ffn_gate_exps.weight' has partial data (96.88%)
123
+ 1.32.234.598 W save_imatrix: entry ' blk.12.ffn_down_exps.weight' has partial data (96.88%)
124
+ 1.32.234.598 W save_imatrix: entry ' blk.15.ffn_gate_exps.weight' has partial data (96.88%)
125
+ 1.32.234.599 W save_imatrix: entry ' blk.10.ffn_down_exps.weight' has partial data (90.62%)
126
+ 1.32.234.599 W save_imatrix: entry ' blk.10.ffn_gate_exps.weight' has partial data (90.62%)
127
+ 1.32.234.600 W save_imatrix: entry ' blk.20.ffn_gate_exps.weight' has partial data (96.88%)
128
+ 1.32.234.601 W save_imatrix: entry ' blk.12.ffn_up_exps.weight' has partial data (96.88%)
129
+ 1.32.234.602 W save_imatrix: entry ' blk.9.ffn_up_exps.weight' has partial data (96.88%)
130
+ 1.32.234.602 W save_imatrix: entry ' blk.15.ffn_up_exps.weight' has partial data (96.88%)
131
+ 1.32.234.603 W save_imatrix: entry ' blk.14.ffn_down_exps.weight' has partial data (96.88%)
132
+ 1.32.234.604 W save_imatrix: entry ' blk.6.ffn_down_exps.weight' has partial data (90.62%)
133
+ 1.32.234.604 W save_imatrix: entry ' blk.6.ffn_gate_exps.weight' has partial data (90.62%)
134
+ 1.32.234.604 W save_imatrix: entry ' blk.6.ffn_up_exps.weight' has partial data (90.62%)
135
+ 1.32.234.605 W save_imatrix: entry ' blk.14.ffn_up_exps.weight' has partial data (96.88%)
136
+ 1.32.234.605 W save_imatrix: entry ' blk.18.ffn_down_exps.weight' has partial data (96.88%)
137
+ 1.32.234.606 W save_imatrix: entry ' blk.19.ffn_down_exps.weight' has partial data (96.88%)
138
+ 1.32.234.607 W save_imatrix: entry ' blk.10.ffn_up_exps.weight' has partial data (90.62%)
139
+ 1.32.234.607 W save_imatrix: entry ' blk.9.ffn_down_exps.weight' has partial data (96.88%)
140
+ 1.32.234.608 W save_imatrix: entry ' blk.12.ffn_gate_exps.weight' has partial data (96.88%)
141
+
142
+
143
+ 92.62 real 35.98 user 3.99 sys
144
+ 18347606016 maximum resident set size
145
+ 0 average shared memory size
146
+ 0 average unshared data size
147
+ 0 average unshared stack size
148
+ 1118100 page reclaims
149
+ 7845 page faults
150
+ 0 swaps
151
+ 0 block input operations
152
+ 0 block output operations
153
+ 0 messages sent
154
+ 0 messages received
155
+ 0 signals received
156
+ 43 voluntary context switches
157
+ 238188 involuntary context switches
158
+ 1199614086989 instructions retired
159
+ 155437040422 cycles elapsed
160
+ 1550743160 peak memory footprint
logs/quant_dry_runs.log ADDED
The diff for this file is too large to render. See raw diff
 
release_summary.json CHANGED
@@ -1,62 +1,92 @@
1
  {
2
- "current_parser_disabled_lfm_eval": {
3
- "passed": 5,
4
- "total": 6,
5
- "tool_cases": 3,
6
- "tool_cases_passed": 2,
7
- "parse_ok": 2,
8
- "failures": {
9
- "tool_refusal": 1
 
 
 
 
 
 
 
 
 
 
 
 
10
  }
11
  },
12
- "fused_parser_disabled_lfm_eval": {
13
- "passed": 6,
14
- "total": 6,
15
- "tool_cases": 3,
16
- "tool_cases_passed": 3,
17
- "parse_ok": 3,
18
- "failures": {}
19
- },
20
- "iter01_parser_disabled_lfm_eval": {
21
- "passed": 6,
22
- "total": 6,
23
- "tool_cases": 3,
24
- "tool_cases_passed": 3,
25
- "parse_ok": 3,
26
- "failures": {}
27
- },
28
- "mlx6_parser_disabled_lfm_eval": {
29
- "passed": 6,
30
- "total": 6,
31
- "tool_cases": 3,
32
- "tool_cases_passed": 3,
33
- "parse_ok": 3,
34
- "failures": {}
35
- },
36
- "mlx8_parser_disabled_lfm_eval": {
37
- "passed": 6,
38
- "total": 6,
39
- "tool_cases": 3,
40
- "tool_cases_passed": 3,
41
- "parse_ok": 3,
42
- "failures": {}
43
- },
44
- "variant_generation_smoke": {
45
- "prompts": 10,
46
- "bad": 0
47
- },
48
- "artifacts": {
49
- "base_grouped_checkpoint": "runtime_moe8_artifacts/runs/moe8_overlap_g4s3_3epochs_10k/checkpoints/step_01746_final",
50
- "fused_checkpoint": "release_work/model_release/fused/lfm25_hermes_moe8_repair_fused",
51
- "mlx_8bit": "release_work/model_release/variants/mlx-8bit",
52
- "mlx_6bit": "release_work/model_release/variants/mlx-6bit"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
53
  },
54
- "model_upload_root_lfm_eval": {
55
- "passed": 6,
56
- "total": 6,
57
- "tool_cases": 3,
58
- "tool_cases_passed": 3,
59
- "parse_ok": 3,
60
- "failures": {}
61
- }
62
  }
 
1
  {
2
+ "final_adapter": "release_work/lfm25-moe8-mac-trainer/artifacts/adapters/iter10_balanced_holdout_repair_r32",
3
+ "fused_mlx": "release_work/model_upload_iter10_fused",
4
+ "dequantized_hf_source": "release_work/model_upload_iter10_fused_dequantized",
5
+ "bf16_gguf": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/bf16/LFM-2.5-8B-1B-hermes-ft-BF16.gguf",
6
+ "gguf_quants": {
7
+ "LFM-2.5-8B-1B-hermes-ft-Q4_K_XL_APPROX.gguf": {
8
+ "path": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/quants/LFM-2.5-8B-1B-hermes-ft-Q4_K_XL_APPROX.gguf",
9
+ "bytes": 6166588512
10
+ },
11
+ "LFM-2.5-8B-1B-hermes-ft-Q5_K_XL_APPROX.gguf": {
12
+ "path": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/quants/LFM-2.5-8B-1B-hermes-ft-Q5_K_XL_APPROX.gguf",
13
+ "bytes": 6928018528
14
+ },
15
+ "LFM-2.5-8B-1B-hermes-ft-Q6_K_XL_APPROX.gguf": {
16
+ "path": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/quants/LFM-2.5-8B-1B-hermes-ft-Q6_K_XL_APPROX.gguf",
17
+ "bytes": 7671360608
18
+ },
19
+ "LFM-2.5-8B-1B-hermes-ft-Q8_K_XL_APPROX.gguf": {
20
+ "path": "release_work/lfm25-moe8-mac-trainer/artifacts/gguf/quants/LFM-2.5-8B-1B-hermes-ft-Q8_K_XL_APPROX.gguf",
21
+ "bytes": 9279548512
22
  }
23
  },
24
+ "evals": {
25
+ "iter10_mlx_fused": {
26
+ "passed": 43,
27
+ "total": 43,
28
+ "overall_rate": 1.0,
29
+ "tool_cases": 28,
30
+ "structured_tool_cases_passed": 28,
31
+ "structured_tool_rate": 1.0,
32
+ "no_tool_cases": 10,
33
+ "false_positive_tool_rate": 0.0,
34
+ "content_text_tool_leaks": 0,
35
+ "finish_reason_tool_calls": 28
36
+ },
37
+ "gguf_q4_xl_approx_llamacpp_64k": {
38
+ "passed": 43,
39
+ "total": 43,
40
+ "overall_rate": 1.0,
41
+ "tool_cases": 28,
42
+ "structured_tool_cases_passed": 28,
43
+ "structured_tool_rate": 1.0,
44
+ "no_tool_cases": 10,
45
+ "false_positive_tool_rate": 0.0,
46
+ "content_text_tool_leaks": 0,
47
+ "finish_reason_tool_calls": 28
48
+ },
49
+ "gguf_q5_xl_approx_llamacpp_64k": {
50
+ "passed": 43,
51
+ "total": 43,
52
+ "overall_rate": 1.0,
53
+ "tool_cases": 28,
54
+ "structured_tool_cases_passed": 28,
55
+ "structured_tool_rate": 1.0,
56
+ "no_tool_cases": 10,
57
+ "false_positive_tool_rate": 0.0,
58
+ "content_text_tool_leaks": 0,
59
+ "finish_reason_tool_calls": 28
60
+ },
61
+ "gguf_q6_xl_approx_llamacpp_64k": {
62
+ "passed": 43,
63
+ "total": 43,
64
+ "overall_rate": 1.0,
65
+ "tool_cases": 28,
66
+ "structured_tool_cases_passed": 28,
67
+ "structured_tool_rate": 1.0,
68
+ "no_tool_cases": 10,
69
+ "false_positive_tool_rate": 0.0,
70
+ "content_text_tool_leaks": 0,
71
+ "finish_reason_tool_calls": 28
72
+ },
73
+ "gguf_q8_xl_approx_llamacpp_64k": {
74
+ "passed": 43,
75
+ "total": 43,
76
+ "overall_rate": 1.0,
77
+ "tool_cases": 28,
78
+ "structured_tool_cases_passed": 28,
79
+ "structured_tool_rate": 1.0,
80
+ "no_tool_cases": 10,
81
+ "false_positive_tool_rate": 0.0,
82
+ "content_text_tool_leaks": 0,
83
+ "finish_reason_tool_calls": 28
84
+ }
85
  },
86
+ "llama_cpp_patch": "tools/llama-current/conversion/lfm2.py shortconv squeeze(-1) for LFM2/LFM2MoE conv.conv weights",
87
+ "notes": [
88
+ "Iter10 fixed-Hermes structured repair is the accepted adapter.",
89
+ "MLX fused and all llama.cpp XL approximation quants passed the 43-case parser-disabled fixed-Hermes suite.",
90
+ "GGUF XL quants are stock llama.cpp tensor-type-file/imatrix approximations, not byte-identical Unsloth Dynamic 2.0."
91
+ ]
 
 
92
  }