Filesystem path to a PDF / HTML / Markdown file.
| 31 | """Filesystem path to a PDF for Paper Flow V1.""" |
| 32 | |
| 33 | type: Literal["local"] = "local" |
| 34 | path: Path |
| 35 | |
| 36 | |
| 37 | class RawText(BaseInput): |
| 38 | """Reserved inline text input rejected by page-aware Paper Flow V1.""" |
| 39 | |
| 40 | type: Literal["text"] = "text" |
no outgoing calls