| 16 | |
| 17 | @dataclass |
| 18 | class Task: |
| 19 | type: str # the type of the task |
| 20 | raw: str # the raw generated content of the task |
| 21 | content: str # the extracted content of the raw content |
| 22 | ground_turth: str # the ground truth of the task |
| 23 | task_id: str = field(default="DEFAULT_ID") # default value for task_id |
| 24 | difficulty: int = field(default=2) # default value for task_id |
| 25 | |
| 26 | @dataclass |
| 27 | class Response: |
no outgoing calls
no test coverage detected