Mistral Large 3 2512
mistralai/mistral-large-2512
- Latency
- 482ms
- Cost
- $0.00017
- Per 1,000
- $0.17
86 in · 88 out · 35 words · checks 6/6
- regex
- regex
- regex
- regex
- regex
- contains
```sql SELECT c.name, SUM(o.amount) AS total_amount FROM customers c JOIN orders o ON c.id = o.customer_id WHERE o.ordered_at >= '2025-01-01' AND o.ordered_at < '2026-01-01' GROUP BY c.id, c.name ORDER BY total_amount DESC LIMIT 5; ```
Judge: Query correctly joins customers and orders, filters 2025 using date range, groups by customer with proper aggregation, orders descending by total, limits to 5, and uses portable standard SQL syntax.