Kimi K3
moonshotai/kimi-k3
- Latency
- 1.2s
- Cost
- $0.00076
- Per 1,000
- $0.76
175 in · 42 out (4 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.