DeepSeek V4 Pro
deepseek/deepseek-v4-pro
- Latency
- 571ms
- Cost
- $0.00024
- Per 1,000
- $0.24
159 in · 72 out (50 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.