From 7180cb049c154f0ad15270885a844d4468adb3e3 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Tue, 3 Dec 2024 18:14:01 -0800 Subject: [PATCH] feat: add QwQ to solo model color conditions in chart --- aider/website/_includes/qwq-chart.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aider/website/_includes/qwq-chart.js b/aider/website/_includes/qwq-chart.js index f923cb678..a6d1c7b2b 100644 --- a/aider/website/_includes/qwq-chart.js +++ b/aider/website/_includes/qwq-chart.js @@ -23,12 +23,12 @@ document.addEventListener('DOMContentLoaded', function () { datasets: [{ data: filteredData.map(row => row.pass_rate_2), backgroundColor: filteredData.map(row => - (row.model === 'Qwen2.5 Coder 32B-I' || row.model === 'Sonnet (SOTA)' || row.model === 'o1-mini' || row.model === 'o1-preview') + (row.model === 'Qwen2.5 Coder 32B-I' || row.model === 'Sonnet (SOTA)' || row.model === 'o1-mini' || row.model === 'o1-preview' || row.model === 'QwQ') ? 'rgba(75, 192, 192, 0.2)' // Green for solo models : 'rgba(54, 162, 235, 0.2)' // Blue for architect+editor ), borderColor: filteredData.map(row => - (row.model === 'Qwen2.5 Coder 32B-I' || row.model === 'Sonnet (SOTA)' || row.model === 'o1-mini' || row.model === 'o1-preview') + (row.model === 'Qwen2.5 Coder 32B-I' || row.model === 'Sonnet (SOTA)' || row.model === 'o1-mini' || row.model === 'o1-preview' || row.model === 'QwQ') ? 'rgba(75, 192, 192, 1)' // Green border for solo models : 'rgba(54, 162, 235, 1)' // Blue border for architect+editor ),