9dd5fca9f9
- Add Usage Stats page with token breakdown, model distribution, and 30-day trend - Pass through cache/cost token fields in BFF (cache_read/write_tokens, reasoning_tokens, actual_cost_usd) - Add CLI commands: -v/--version, -h/--help, update/upgrade with auto-restart - Auto-open browser on startup, auto-kill port conflicts (cross-platform) - Validate all api_server config fields on startup (enabled, host, port, key, cors_origins) - Add streaming thinking video animation with tool calls panel - Add context token usage display (used / total) in chat header - Sidebar: white logo area with shadow, dance video beside logo (canvas seamless loop) - Fix sidebar nav scroll (app-main overflow-y: auto) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
98 lines
1.9 KiB
Vue
98 lines
1.9 KiB
Vue
<script setup lang="ts">
|
|
import { useI18n } from 'vue-i18n'
|
|
import { useUsageStore } from '@/stores/usage'
|
|
|
|
const { t } = useI18n()
|
|
const usageStore = useUsageStore()
|
|
|
|
function formatTokens(n: number): string {
|
|
if (n >= 1000000) return (n / 1000000).toFixed(1) + 'M'
|
|
if (n >= 1000) return (n / 1000).toFixed(1) + 'K'
|
|
return String(n)
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<div class="model-breakdown">
|
|
<h3 class="section-title">{{ t('usage.modelBreakdown') }}</h3>
|
|
<div class="model-list">
|
|
<div v-for="m in usageStore.modelUsage" :key="m.model" class="model-row">
|
|
<span class="model-name">{{ m.model }}</span>
|
|
<div class="model-bar-wrap">
|
|
<div
|
|
class="model-bar"
|
|
:style="{ width: (m.totalTokens / usageStore.modelUsage[0].totalTokens * 100) + '%' }"
|
|
/>
|
|
</div>
|
|
<span class="model-tokens">{{ formatTokens(m.totalTokens) }}</span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss">
|
|
@use '@/styles/variables' as *;
|
|
|
|
.model-breakdown {
|
|
background: $bg-card;
|
|
border: 1px solid $border-color;
|
|
border-radius: $radius-md;
|
|
padding: 16px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.section-title {
|
|
font-size: 13px;
|
|
font-weight: 600;
|
|
color: $text-secondary;
|
|
margin: 0 0 12px;
|
|
}
|
|
|
|
.model-list {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 8px;
|
|
}
|
|
|
|
.model-row {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 10px;
|
|
}
|
|
|
|
.model-name {
|
|
font-size: 12px;
|
|
font-family: $font-code;
|
|
color: $text-secondary;
|
|
width: 140px;
|
|
flex-shrink: 0;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.model-bar-wrap {
|
|
flex: 1;
|
|
height: 16px;
|
|
background: $bg-secondary;
|
|
border-radius: 3px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.model-bar {
|
|
height: 100%;
|
|
background: $text-primary;
|
|
border-radius: 3px;
|
|
min-width: 2px;
|
|
transition: width 0.3s ease;
|
|
}
|
|
|
|
.model-tokens {
|
|
font-size: 12px;
|
|
color: $text-muted;
|
|
width: 60px;
|
|
text-align: right;
|
|
flex-shrink: 0;
|
|
}
|
|
</style>
|