From a8982fcd9e06f5523061a5270eb0004121ef77ff Mon Sep 17 00:00:00 2001 From: Justin Bollinger Date: Sat, 14 Feb 2026 09:25:48 -0500 Subject: [PATCH] feat: include candidates and response in benchmark JSON output Co-Authored-By: Claude Opus 4.6 --- tools/ollama_benchmark.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tools/ollama_benchmark.py b/tools/ollama_benchmark.py index e7c7ce9..d315f41 100755 --- a/tools/ollama_benchmark.py +++ b/tools/ollama_benchmark.py @@ -159,6 +159,8 @@ def benchmark_model(url, model, prompt, num_ctx): candidates = filter_candidates(response_text) result["candidate_count"] = len(candidates) result["unique_candidates"] = len(set(candidates)) + result["candidates"] = candidates + result["response"] = response_text return result