Duration
3s
Input Tokens
774
Output Tokens
70
Cost
$0.00
Context
Input
List all employees hired after 2021Expected output
SELECT * FROM employees WHERE hired_at > '2021-12-31';Model output
SELECT * FROM employees WHERE hired_at > '2021-12-31'Natural language to SQL query generation evaluates text-to-query fidelity and schema reasoning. This task is particularly relevant for analytics chat assistants and simplified database interfaces.
List all employees hired after 2021SELECT * FROM employees WHERE hired_at > '2021-12-31';SELECT * FROM employees WHERE hired_at > '2021-12-31'