Get Table
Return tabularize metadata for a completed job.
Reads:
- the agentic schema from the dataset prefix,
- the per-doc partials to construct
document_ids(ok) andfailed_document_ids+failures.
Rows live in users/{user_id}/datasets/{dataset_id}/data.parquet (not
inlined here — the SDK constructs a remote-handle
:class:DocumentDataset and lets training-time readers fetch
server-side).
Path Parameters
Response
Successful Response
GET /v1/agentic/documents/tables/{dataset_id} -- the tabularized result.
The tabularized rows themselves live in object storage under the
returned dataset_id (same prefix used by upload-sourced datasets),
so this response is metadata-only: enough to construct a
:class:outerproduct.agentic.documents.DocumentDataset handle without
materializing rows on the client.
document_ids lists only the docs that produced a row.
failed_document_ids lists docs that failed extraction (a row was
not produced); failures carries the per-doc error message.