Can a local AI summarize PDFs?
Yes, and the interesting question is not whether but what kind: a summary you can check against the source, or one you simply have to believe.
Yes. A local model reads the PDF's extracted text on your machine and condenses it, with no upload anywhere. Long documents are handled in sections rather than all at once, and the checkable kind of summary cites the passages it condensed, so you can verify any line of it against the source. The limits are the model's context window and the quality of the extraction, not privacy.
What summarizing actually is.
Extract the text, hand it to the model, and ask for the shorter version. Everything in that sentence runs locally: extraction by the tool, generation by a model on your own hardware. A small local model doing this with the full document in front of it is a genuinely useful summarizer, because the task rewards attention to the given text over breadth of world knowledge. The frontier advantage narrows when the answer must come from a fixed document.
Long documents, honestly.
Every model has a context window, and a two-hundred-page report does not fit in any of them. The standard approach is piecewise: summarize sections, then summarize the summaries, and be aware that a connection spanning distant chapters can fall between the pieces. The better habit for research is often to skip the single summary and ask pointed questions instead, since retrieval finds the exact passages that bear on what you want to know. A summary is what you read first; a question is what you ask when it matters.
The difference that matters: checkability.
Any tool can produce a fluent summary; the useful distinction is whether you can check it. A grounded summary attaches citations, line by line, to the passages it condensed, so "the paper claims X" comes with the spot where the paper says it. A verification gate then catches the classic summarizer failure, a claim slightly stronger than its source, before you ever read it. That is the difference between a summary you trust and a summary you hope is right, and it is the reason to prefer one that shows its passages over one that shows only confidence.