MiniMax M3
minimax/minimax-m3
- Latency
- 1.8s
- Cost
- $0.00014
- Per 1,000
- $0.14
248 in · 81 out (59 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.