Quality_evaluation/stuff/one_Task_class.py
Aleksandr Dubchak 98d5e90894 mind2web
2026-04-23 00:04:11 +03:00

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