feat(usage): add account cost to breakdown sub-table and admin usage log
- UserBreakdownItem: add AccountCost field + SQL aggregation - UserBreakdownSubTable: add orange account cost column - Admin usage table: add account_cost column (after cost, default visible) - Column settings: add account_cost toggle option
This commit is contained in:
@@ -160,6 +160,12 @@
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<template #cell-account_cost="{ row }">
|
||||
<span class="text-sm font-medium text-orange-500 dark:text-orange-400">
|
||||
${{ accountBilled(row).toFixed(6) }}
|
||||
</span>
|
||||
</template>
|
||||
|
||||
<template #cell-first_token="{ row }">
|
||||
<span v-if="row.first_token_ms != null" class="text-sm text-gray-600 dark:text-gray-400">{{ formatDuration(row.first_token_ms) }}</span>
|
||||
<span v-else class="text-sm text-gray-400 dark:text-gray-500">-</span>
|
||||
|
||||
Reference in New Issue
Block a user