get_table
Retrieve structured data from a table in a Word document by specifying its zero-based index, including row and column counts 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 |