File size: 416 Bytes
e078b1d
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from dataclasses import dataclass

@dataclass
class RubricScore:
    clarity: int
    completeness: int
    correctness: int
    notes: str = ""

RUBRIC_GUIDANCE = {
    "clarity": "1=hard to follow, 5=very clear and concise",
    "completeness": "1=misses core facts, 5=captures event, location context, severity, and consequences",
    "correctness": "1=contains unsupported claims, 5=no obvious hallucination",
}