Spaces:
Running
Running
Upload 3 files
Browse files- templates/dashboard.html +1 -1
templates/dashboard.html
CHANGED
@@ -895,7 +895,7 @@
|
|
895 |
<td class="token-count">{{ record.prompt_tokens }}</td>
|
896 |
<td class="token-count">{{ record.completion_tokens }}</td>
|
897 |
<td>{{ record.prompt_tokens + record.completion_tokens }}</td>
|
898 |
-
<td>{{ record.calculation_method }}</td>
|
899 |
<td>{{ record.compute_points if record.compute_points is not none else 'null' }}</td>
|
900 |
</tr>
|
901 |
{% endfor %}
|
|
|
895 |
<td class="token-count">{{ record.prompt_tokens }}</td>
|
896 |
<td class="token-count">{{ record.completion_tokens }}</td>
|
897 |
<td>{{ record.prompt_tokens + record.completion_tokens }}</td>
|
898 |
+
<td><span class="token-method {{ record.calculation_method }}">{{ "精确" if record.calculation_method == "api" else "估算" }}</span></td>
|
899 |
<td>{{ record.compute_points if record.compute_points is not none else 'null' }}</td>
|
900 |
</tr>
|
901 |
{% endfor %}
|