Any web URL; PDF vs HTML is decided by content-type.
| 24 | """A web URL that must resolve to a PDF in Paper Flow V1.""" |
| 25 | |
| 26 | type: Literal["http"] = "http" |
| 27 | url: str |
| 28 | |
| 29 | |
| 30 | class LocalFilePath(BaseInput): |
| 31 | """Filesystem path to a PDF for Paper Flow V1.""" |
| 32 | |
| 33 | type: Literal["local"] = "local" |
no outgoing calls