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