13 lines
No EOL
239 B
Python
13 lines
No EOL
239 B
Python
from dataclasses import dataclass
|
|
from typing import Optional, Any
|
|
|
|
|
|
@dataclass
|
|
class Task:
|
|
id: str
|
|
dataset: str
|
|
website: Optional[str]
|
|
instruction: str
|
|
start_url: Optional[str]
|
|
expected: Optional[Any]
|
|
raw: dict |