get_table
Retrieve structured information from a Word document table by specifying its zero-based index. Returns row count, column count, and cell contents.
Instructions
Get structured info for a single table by zero-based index.
Args: table_idx: 0-based table index.
Returns: {"index": int, "row_count": int, "col_count": int, "cells": list[list[str]]}
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| table_idx | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |