File size: 1,144 Bytes
db7d7d8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 | [
{
"id": "punct_bug_1",
"category": "entities",
"input": "شركة أبل",
"expected": "شركة أبل",
"severity": "low",
"description": "Ensure punctuation is not added to single entity names."
},
{
"id": "punct_bug_2",
"category": "short_phrase",
"input": "مرحبا بكم في لوحة التحكم",
"expected": "مرحبا بكم في لوحة التحكم",
"severity": "medium",
"description": "Ensure punctuation is not added to short standalone phrases."
},
{
"id": "punct_bug_3",
"category": "structured",
"input": "الاسم: أحمد، العمر: 30",
"expected": "الاسم: أحمد، العمر: 30",
"severity": "medium",
"description": "Ensure punctuation is not added to structured text fragments."
},
{
"id": "punct_bug_4",
"category": "grammar_preservation",
"input": "يذهبون المهندسون الى العمل",
"expected": "يذهب المهندسون إلى العمل",
"severity": "high",
"description": "Grammar fixes should not be overwritten or corrupted by the punctuation model."
}
]
|