Per-key comparison between gold and model output.
| 30 | |
| 31 | @dataclass |
| 32 | class KeyComparison: |
| 33 | """Per-key comparison between gold and model output.""" |
| 34 | |
| 35 | key: str |
| 36 | gold_value: str |
| 37 | model_value: str |
| 38 | exact: bool |
| 39 | match_type: str |
| 40 | similarity: float |
| 41 | |
| 42 | |
| 43 | @dataclass |
no outgoing calls
no test coverage detected