使用量

レシート解析に使ったAIの利用状況です。料金は目安です。

@if($filterUsers->count() > 1) @endif

解析回数

{{ number_format($summary->receipt_count) }}

入力トークン

{{ number_format($summary->input_tokens) }}

出力トークン

{{ number_format($summary->output_tokens) }}

推定利用料金

${{ number_format((float) $summary->estimated_cost_usd, 4) }}

モデル別

@if($byModel->isEmpty())

この月の利用はありません。

@else
@foreach($byModel as $row)

{{ config('services.claude.models.'.$row->model.'.label', '未設定') }}

{{ config('services.claude.models.'.$row->model.'.name', $row->model ?: '—') }} ・ {{ number_format($row->receipt_count) }}件

入 {{ number_format($row->input_tokens) }} / 出 {{ number_format($row->output_tokens) }}

${{ number_format((float) $row->estimated_cost_usd, 4) }}

@endforeach
@endif