A DOI to be resolved by ``preprocess.fetch.doi``.
| 45 | """A DOI to be resolved by ``preprocess.fetch.doi``.""" |
| 46 | |
| 47 | type: Literal["doi"] = "doi" |
| 48 | doi: str |
| 49 | |
| 50 | |
| 51 | PaperInput = Annotated[ |
| 52 | Union[ArxivIdentifier, HttpUrl, LocalFilePath, RawText, DoiIdentifier], |
| 53 | Field(discriminator="type"), |
| 54 | ] |
no outgoing calls