GLM 5.3
z-ai/glm-5.3
- Latency
- 297ms
- Cost
- $0.00031
- Per 1,000
- $0.31
94 in · 41 out · 20 words · checks 3/4
- contains
- regex
- not_contains
- not_contains
```python
def find_user(cursor, email):
query = "SELECT id, name FROM users WHERE email = ?"
cursor.execute(query, (email,))
return cursor.fetchone()
```Judge: The output correctly uses parameterised query with ? placeholder, execute(query, (email,)) syntax, maintains identical SELECT columns and return statement, eliminates all string formatting, and provides only the corrected function as requested.