Grok 4.6
x-ai/grok-4.6
- Latency
- 6.4s
- Cost
- $0.00147
- Per 1,000
- $1.47
290 in · 180 out (156 reasoning) · 12 words · checks 3/3
- contains
- regex
- contains
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.