add_file(table, path, chunk_by="paragraph") -> int
Read a UTF-8 file and ingest chunks.
paragraph (split on blank lines) or line.add_dataframe(table, df) -> int
Convert a pandas DataFrame with to_dict(orient="records") and call table.add.
add_arrow(table, arrow_table) -> int
Prefer table.add_arrow when available; otherwise falls back to row-wise conversion. Requires pyarrow.
See Ingest guide.