AxKnowledgeBase_ingest_pdf_to_private_knowledge_base
Add a local PDF to a private knowledge base by parsing it into passages, figures, tables, and references. Makes the paper searchable only in the private graph, avoiding duplicates on retry.
Instructions
Ingest one local PDF into the organization's private knowledge graph. The PDF is parsed into passages, figures, tables and references, and the source PDF is stored. This is the only tool that writes to a knowledge graph, and the private graph is the only graph it writes to — an ingested paper is reachable through search_private_knowledge_base and private_knowledge_graph_read, and never through search_knowledge_base.
Synchronous and slow: it returns when ingestion has finished, which takes minutes for a full paper. Re-sending the same PDF is safe — it is reported as already present rather than ingested twice — so on a timeout or an unclear failure, retrying is the correct move.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| doi | No | The paper's DOI, if known. Leave empty if unknown. | |
| file_path | Yes | The absolute path to the PDF file to ingest |