Qwen3.8 Max (0902)
qwen/qwen3.8-max-0902
- Latency
- 1.2s
- Cost
- $0.00147
- Per 1,000
- $1.47
122 in · 205 out (137 reasoning) · 32 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 o.customer_id = c.id WHERE EXTRACT(YEAR FROM o.ordered_at) = 2025 GROUP BY c.name ORDER BY total_amount DESC LIMIT 5; ```
Judge: Query correctly uses JOIN, GROUP BY, ORDER BY, and LIMIT with proper 2025 filtering; minor deduction because GROUP BY should include c.id to be fully standard-compliant (though c.name alone works in most systems).