feat: Ingest authentic Grade 10 Math Unit 1 with complete LaTeX equations and full derivations

This commit is contained in:
Hamza-Ayed
2026-08-29 03:32:37 +03:00
parent 39cf087488
commit eb94f6ff77
7 changed files with 368 additions and 23 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
require_once __DIR__ . '/../app/bootstrap.php';
require_once __DIR__ . '/curriculum_markdown_parser.php';
$mathMarkdown = file_get_contents(__DIR__ . '/unit1_math_full.md');
$metadata = [
'grade_name' => 'الصف العاشر',
'grade_key' => 'grade_10',
'subject_name' => 'الرياضيات',
'subject_key' => 'math_10',
'semester_name' => 'الفصل الدراسي الأول',
'semester_key' => 'semester_1'
];
$res = parseAndIngestTextbookMarkdown($mathMarkdown, $metadata);
echo "SUCCESS! Ingested Math Unit 1 into storage/curriculum!\n";