Input Tokens
0
Output Tokens
0
Duration
0
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, in_stock FROM vehicles WHERE in_stock IS TRUE;