Gauntlet-Incept MCP
by Birdsmith
- database
- init
-- Insert sample questions
INSERT INTO ccc.questions (qti_id, content, subject, grade, standard, lesson, difficulty, source, is_example, expected_result)
VALUES
('q_sample_1', 'What is the result of dividing 3/4 by 1/2?', 'math', '6', 'CCSS.Math.6.NS.1', 'Division of Fractions', 2, 'sample', TRUE, 'pass'),
('q_sample_2', 'What is 3/4 divided by 1/2? A) 3/8 B) 6/4 C) 3/2 D) 1 1/2', 'math', '6', 'CCSS.Math.6.NS.1', 'Division of Fractions', 2, 'sample', TRUE, 'fail'),
('q_sample_3', 'Solve: 2/3 ÷ 5/6', 'math', '6', 'CCSS.Math.6.NS.1', 'Division of Fractions', 3, 'sample', TRUE, 'pass');
-- Insert sample articles
INSERT INTO ccc.articles (qti_id, content, subject, grade, standard, lesson, source, is_example, expected_result)
VALUES
('a_sample_1', '# Division of Fractions\n\nIn this lesson, you will learn how to divide fractions...', 'math', '6', 'CCSS.Math.6.NS.1', 'Division of Fractions', 'sample', TRUE, 'pass'),
('a_sample_2', 'Division of Fractions\n\nTo divide fractions, multiply by the reciprocal.', 'math', '6', 'CCSS.Math.6.NS.1', 'Division of Fractions', 'sample', TRUE, 'fail');
-- Insert sample course
INSERT INTO ccc.courses (qti_id, title, description, subject, grade)
VALUES
('c_sample_1', 'Grade 6 Mathematics', 'A comprehensive course covering Grade 6 mathematics concepts', 'math', '6');
-- Insert sample lessons
INSERT INTO ccc.lessons (qti_id, course_id, title, description, standard, sequence_number)
VALUES
('l_sample_1', 1, 'Understanding Fractions', 'Introduction to fractions and their representations', 'CCSS.Math.6.NS.1', 1),
('l_sample_2', 1, 'Addition and Subtraction of Fractions', 'Learn how to add and subtract fractions', 'CCSS.Math.6.NS.1', 2),
('l_sample_3', 1, 'Multiplication of Fractions', 'Learn how to multiply fractions', 'CCSS.Math.6.NS.1', 3),
('l_sample_4', 1, 'Division of Fractions', 'Learn how to divide fractions', 'CCSS.Math.6.NS.1', 4);
-- Link articles to lessons
INSERT INTO ccc.lesson_articles (lesson_id, article_id)
VALUES
(4, 1);
-- Link questions to lessons
INSERT INTO ccc.lesson_questions (lesson_id, question_id)
VALUES
(4, 1),
(4, 3);