Input Tokens
0
Output Tokens
0
Duration
0
Cost
0
Context
Input
Can you show me all the courses that are published?
Expected output
SELECT * FROM courses WHERE is_published = TRUE;
Model output
SELECT course_id, title, description, instructor_id, created_at FROM courses WHERE is_published = TRUE;