Sheets
Create Spreadsheet Job
List Spreadsheet Jobs
Get Spreadsheet Job
Get Result Region
Delete Spreadsheet Job
ModelsExpand Collapse
class SheetsJob: …
A spreadsheet parsing job
Configuration for the parsing job
extraction_range: Optional[str]
A1 notation of the range to extract a single region from. If None, the entire sheet is used.
flatten_hierarchical_tables: Optional[bool]
Return a flattened dataframe when a detected table is recognized as hierarchical.
generate_additional_metadata: Optional[bool]
Whether to generate additional metadata (title, description) for each extracted region.
include_hidden_cells: Optional[bool]
Whether to include hidden cells when extracting regions from the spreadsheet.
sheet_names: Optional[List[str]]
The names of the sheets to extract regions from. If empty, all sheets will be processed.
specialization: Optional[str]
Optional specialization mode for domain-specific extraction. Supported values: ‘financial-standard’, ‘financial-enhanced’, ‘financial-precise’. Default None uses the general-purpose pipeline.
Deprecatedfile: Optional[File]
Schema for a file.
expires_at: Optional[datetime]
The expiration date for the file. Files past this date can be deleted.
purpose: Optional[str]
The intended purpose of the file (e.g., ‘user_data’, ‘parse’, ‘extract’, ‘split’, ‘classify’)
class SheetsParsingConfig: …
Configuration for spreadsheet parsing and region extraction
extraction_range: Optional[str]
A1 notation of the range to extract a single region from. If None, the entire sheet is used.
flatten_hierarchical_tables: Optional[bool]
Return a flattened dataframe when a detected table is recognized as hierarchical.
generate_additional_metadata: Optional[bool]
Whether to generate additional metadata (title, description) for each extracted region.
include_hidden_cells: Optional[bool]
Whether to include hidden cells when extracting regions from the spreadsheet.
sheet_names: Optional[List[str]]
The names of the sheets to extract regions from. If empty, all sheets will be processed.
specialization: Optional[str]
Optional specialization mode for domain-specific extraction. Supported values: ‘financial-standard’, ‘financial-enhanced’, ‘financial-precise’. Default None uses the general-purpose pipeline.