{{ __('Track AI reply accuracy, confidence, and cost') }}
{{ __('AI Replies Sent') }}
{{ number_format($aiRepliesSent) }}
{{ __('Accuracy') }}
{{ $accuracy }}%
{{ __('Avg Confidence') }}
{{ $avgConfidence }}%
{{ __('Escalation Rate') }}
{{ $escalationRate }}%
{{ __('Total Cost') }}
@currency($totalCost)
{{ __('AI accuracy grouped by conversation tags') }}
| {{ __('Topic') }} | {{ __('Replies') }} | {{ __('Accuracy') }} | {{ __('Confidence') }} |
|---|---|---|---|
| {{ $topic['topic'] }} | {{ $topic['total'] }} |
|
{{ $topic['avg_confidence'] }}% |
{{ __('Queries where AI confidence was below 50%') }}
{{ $gap['subject'] }}
{{ $gap['confidence'] }}% {{ __('confidence') }}{{ $gap['date'] }}
| {{ __('Provider') }} | {{ __('Model') }} | {{ __('Requests') }} | {{ __('Tokens In') }} | {{ __('Tokens Out') }} | {{ __('Total Cost') }} |
|---|---|---|---|---|---|
| {{ ucfirst($row->ai_provider ?? 'Unknown') }} | {{ $row->ai_model ?? '--' }} | {{ number_format($row->count) }} | {{ number_format($row->total_tokens_in ?? 0) }} | {{ number_format($row->total_tokens_out ?? 0) }} | @currency($row->total_cost) |