diff --git a/aider/website/_includes/quant-chart.js b/aider/website/_includes/quant-chart.js index ea6d30573..5bcfb17ae 100644 --- a/aider/website/_includes/quant-chart.js +++ b/aider/website/_includes/quant-chart.js @@ -20,7 +20,8 @@ document.addEventListener('DOMContentLoaded', function () { {% endfor %} allData.forEach(function(row) { - chartData.labels.push([row.model, "hi"]); + // Split the model name on \n to create array of lines + chartData.labels.push(row.model.split('\\n')); chartData.datasets[0].data.push(row.pass_rate_2); });