get_table
Extract structured data from a Word document table by its zero-based index, returning row and column counts along with 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 |