Input Tokens
24446
Output Tokens
5567
Duration
138424.297
Cost
0
Context
Input
List all vehicles that are currently in stock.
Expected output
SELECT * FROM vehicles WHERE in_stock = TRUE;
Model output
SELECT vehicle_id, make, model, year, price FROM vehicles WHERE in_stock = TRUE;