Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions docs/artifacts/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -895,6 +895,22 @@ artifact in a later turn.
and customize its request instructions before loading the selected artifact
contents.

**Parsing spreadsheet artifacts (Python only):**

By default, spreadsheet files (`.xlsx`, `.xls`) cannot be read inline by the
model. In Python, you can set `enable_spreadsheet_parsing=True` to parse
them into Markdown tables:

```python
tools=[
LoadArtifactsTool(enable_spreadsheet_parsing=True),
]
```

- Each sheet is rendered as a separate Markdown table under a sheet heading.
- Table output is capped at the first 100 rows per sheet to avoid exceeding
context window limits.

=== "Go"

```go
Expand Down