From fa3005b7b5a613537bc6c2130c4af7c554aefe79 Mon Sep 17 00:00:00 2001 From: senior Date: Mon, 6 Jul 2026 11:35:01 +0000 Subject: [PATCH] report: include model name in the run-report details line --- .gitea/workflows/scripts/build-activity-log.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/scripts/build-activity-log.sh b/.gitea/workflows/scripts/build-activity-log.sh index 216c894..a7b1381 100755 --- a/.gitea/workflows/scripts/build-activity-log.sh +++ b/.gitea/workflows/scripts/build-activity-log.sh @@ -50,7 +50,7 @@ echo "usage: in=$IN_TOTAL out=$OUT cost=$COSTF (fresh=$INP cache_r=$CR cache_w=$ # and the full token/cost breakdown. { printf '\n\n
\ndetails\n\n' - printf '🔧 %s tool calls · in %s · out %s tokens · %s\n\n' "$n" "$IN_TOTAL" "$OUT" "$COSTF" + printf '🔧 %s tool calls · in %s · out %s tokens · %s · model %s\n\n' "$n" "$IN_TOTAL" "$OUT" "$COSTF" "${MODEL:-?}" if [ "$n" -gt 0 ]; then cat /tmp/tools.md; else printf '_(no tool calls — text-only reply)_\n'; fi printf '\n\ntokens — input %s (fresh %s · cache %sw / %sr) · output %s · reasoning %s · **%s**\n
' \ "$IN_TOTAL" "$INP" "$CW" "$CR" "$OUT" "$RE" "$COSTF" -- 2.54.0