3af593c ee1b548 3af593c ee1b548 3af593c ee1b548
1
2
3
4
5
6
7
8
9
10
11
12
13
from dataclasses import dataclass from typing import Optional @dataclass class Paper: title: str abstract: str url: str publication_date: str relevance_score: float source: str authors: Optional[str] = None