Gemini 3.1 Pro Preview
google/gemini-3.1-pro-preview
- Latency
- 2.1s
- Cost
- $0.00172
- Per 1,000
- $1.72
84 in · 129 out (97 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.