Table.add(docs: list) -> int
Ingest documents. Each item is a str or dict with a text field.
Table.add_arrow(arrow_table) -> int
Ingest a PyArrow table via the C Data interface. Requires pyarrow.
Table.search(query, top_k=None, offset=None, strategy=None, explain=None, graph_expand=None, depth=None, query_vector=None) -> SearchResults
Query text (and metadata filter syntax when supported).
Maximum hits to return.
Skip first N results.
sparse, dense, diskann, hyde, crag, distributed, hybrid, etc.Attach explain text to results.
Expand results via graph neighbors.
Graph expansion depth.
Dense query embedding for ANN strategies.
stream_search(table, query, batch_size=128, ...)
Module helper in toradb.table — yields SearchResults batches.
