Qwen3.8 Max (0902)
qwen/qwen3.8-max-0902
- Latency
- 1.6s
- Cost
- $0.00080
- Per 1,000
- $0.80
121 in · 93 out (61 reasoning) · 14 words · checks 3/3
- contains
- regex
- contains
```javascript
async function getName(id) {
const user = await fetchUser(id);
return user.name;
}
```Judge: Output correctly adds await to resolve the Promise, maintains async function signature, returns user.name, and provides only the corrected function without extra commentary.