From 9d6a69205498eea45da75dfe2cbbe874c1cf883d Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Thu, 23 Jan 2025 15:31:42 -0800 Subject: [PATCH] feat: Show "?" when total cost is 0 in table --- aider/website/_posts/2025-01-23-r1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/website/_posts/2025-01-23-r1.md b/aider/website/_posts/2025-01-23-r1.md index ca59660c9..1198cc8c5 100644 --- a/aider/website/_posts/2025-01-23-r1.md +++ b/aider/website/_posts/2025-01-23-r1.md @@ -39,7 +39,7 @@ nav_exclude: true {{ row.percent_cases_well_formed }}% {{ row.command }} {{ row.edit_format }} - ${{ row.total_cost | times: 1.0 | round: 2 }} + {% if row.total_cost == 0 %}?{% else %}${{ row.total_cost | times: 1.0 | round: 2 }}{% endif %} {% endfor %}