More improvements.

This commit is contained in:
2026-02-06 11:05:46 -05:00
parent 7e5dbe6f00
commit 848d187f4b
7 changed files with 250 additions and 83 deletions

View File

@@ -27,6 +27,7 @@
<tr>
<th style="width: 15%">Role</th>
<th style="width: 25%">Selected Model</th>
<th style="width: 15%">Est. Cost</th>
<th>Selection Reasoning</th>
</tr>
</thead>
@@ -39,6 +40,9 @@
<td>
<span class="badge bg-info text-dark">{{ info.model }}</span>
</td>
<td>
<span class="badge bg-light text-dark border">{{ info.estimated_cost }}</span>
</td>
<td class="small text-muted">
{{ info.reason }}
</td>
@@ -71,6 +75,7 @@
<tr>
<th style="width: 10%">Rank</th>
<th style="width: 30%">Model Name</th>
<th style="width: 15%">Est. Cost</th>
<th>Reasoning</th>
</tr>
</thead>
@@ -80,6 +85,7 @@
<tr>
<td class="fw-bold">{{ loop.index }}</td>
<td><span class="badge bg-secondary">{{ item.model }}</span></td>
<td><small>{{ item.estimated_cost }}</small></td>
<td class="small text-muted">{{ item.reason }}</td>
</tr>
{% endfor %}