make_table_from_csv
Convert CSV or TSV text into formatted ASCII or Unicode tables with options for delimiter, headers, table style, and numeric auto-formatting.
Instructions
Parse a CSV/TSV string and render as a table.
Args: csv_text: Raw CSV-formatted text delimiter: Field delimiter (default: comma). Use '\t' for TSV. has_header: If True (default), first row is treated as column headers fmt: "grid" (default), "box", "safe", or "pipe" style: Table style (for grid fmt) auto_format: Auto-detect numeric columns
Returns: Formatted table.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| csv_text | Yes | ||
| delimiter | No | , | |
| has_header | No | ||
| fmt | No | grid | |
| style | No | mysql | |
| auto_format | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |