32 lines
1.3 KiB
Plaintext
32 lines
1.3 KiB
Plaintext
---
|
|
title: "API 数据面板看板"
|
|
---
|
|
import ModernTable from '../../components/ModernTable.astro';
|
|
|
|
# 模型消耗统计报告
|
|
|
|
以下是今日各模型的 Token 消耗与计费统计(采用精美组件渲染):
|
|
|
|
<ModernTable>
|
|
<tr slot="header">
|
|
<th class="px-6 py-4 font-medium">厂商与模型</th>
|
|
<th class="px-6 py-4 font-medium">输入费用 (元)</th>
|
|
<th class="px-6 py-4 font-medium">输出费用 (元)</th>
|
|
<th class="px-6 py-4 font-medium text-blue-500">总费用 (元)</th>
|
|
</tr>
|
|
<tbody slot="body">
|
|
<tr class="hover:bg-gray-50 dark:hover:bg-gray-800/50 transition-colors">
|
|
<td class="px-6 py-4 flex items-center gap-2">🚀 <span class="font-semibold text-gray-900 dark:text-white">DeepSeek-V4-Flash</span></td>
|
|
<td class="px-6 py-4">0.72</td>
|
|
<td class="px-6 py-4">0.16</td>
|
|
<td class="px-6 py-4 font-bold text-gray-900 dark:text-white">0.88</td>
|
|
</tr>
|
|
<tr class="hover:bg-gray-50 dark:hover:bg-gray-800/50 transition-colors">
|
|
<td class="px-6 py-4 flex items-center gap-2">☁️ <span class="font-semibold text-gray-900 dark:text-white">Qwen3.6-Plus</span></td>
|
|
<td class="px-6 py-4">1.45</td>
|
|
<td class="px-6 py-4">0.94</td>
|
|
<td class="px-6 py-4 font-bold text-gray-900 dark:text-white">2.39</td>
|
|
</tr>
|
|
</tbody>
|
|
</ModernTable>
|