GPT-5.5
openai/gpt-5.5
- Latency
- 412ms
- Cost
- $0.00122
- Per 1,000
- $1.22
88 in · 26 out · 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.